// -*- C++ -*- #ifndef MATH_ARRAYINSET_H #define MATH_ARRAYINSET_H #include "math_gridinset.h" #ifdef __GNUG__ #pragma interface #endif class MathArrayInset : public MathGridInset { public: /// MathArrayInset(int m, int n); /// MathArrayInset(int m, int n, char valign, string const & halign); /// convienience constructor from whitespace/newline seperated data MathArrayInset(string const & str); /// MathInset * clone() const; /// void write(MathWriteInfo & os) const; /// void writeNormal(NormalStream &) const; /// void metrics(MathMetricsInfo const & st) const; /// MathArrayInset * asArrayInset() { return this; } }; #endif