2001-06-25 00:06:33 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
#ifndef MATH_ARRAYINSET_H
|
|
|
|
#define MATH_ARRAYINSET_H
|
|
|
|
|
2001-07-17 07:38:41 +00:00
|
|
|
#include "math_gridinset.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
class MathArrayInset : public MathGridInset {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
MathArrayInset(int m, int n);
|
|
|
|
///
|
2001-10-12 12:02:49 +00:00
|
|
|
MathArrayInset(int m, int n, char valign, string const & halign);
|
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
MathInset * clone() const;
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-10-19 11:25:48 +00:00
|
|
|
void write(MathWriteInfo & os) const;
|
2001-08-01 13:28:45 +00:00
|
|
|
///
|
2001-11-07 08:51:35 +00:00
|
|
|
void writeNormal(std::ostream &) const;
|
|
|
|
///
|
2001-10-19 11:25:48 +00:00
|
|
|
void metrics(MathMetricsInfo const & st) const;
|
2001-09-10 09:35:12 +00:00
|
|
|
///
|
2001-10-12 12:02:49 +00:00
|
|
|
MathArrayInset * asArrayInset() { return this; }
|
2001-06-25 00:06:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|