lyx_mirror/src/mathed/math_arrayinset.h
Lars Gullik Bjønnes 85a5ea7bfc change a lot of methods to begin with small char
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2150 a592a061-630c-0410-9148-cb99ea01b6c8
2001-06-28 10:25:20 +00:00

23 lines
332 B
C++

// -*- 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);
///
virtual MathInset * clone() const;
///
void Write(std::ostream &, bool fragile) const;
};
#endif