lyx_mirror/src/mathed/math_arrayinset.h
Lars Gullik Bjønnes d1182f17da LyX Drinkers Union: patch 1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2141 a592a061-630c-0410-9148-cb99ea01b6c8
2001-06-25 00:06:33 +00:00

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