lyx_mirror/src/mathed/math_arrayinset.h

23 lines
325 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATH_ARRAYINSET_H
#define MATH_ARRAYINSET_H
#include "math_grid.h"
#ifdef __GNUG__
#pragma interface
#endif
class MathArrayInset : public MathGridInset {
public:
///
MathArrayInset(int m, int n);
///
MathInset * Clone() const;
///
void Write(std::ostream &, bool fragile) const;
};
#endif