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-08-06 17:20:26 +00:00
|
|
|
MathInset * clone() const;
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-07-26 06:56:43 +00:00
|
|
|
void write(std::ostream &, bool fragile) const;
|
2001-08-01 13:28:45 +00:00
|
|
|
///
|
2001-09-10 09:35:12 +00:00
|
|
|
void metrics(MathStyles st) const;
|
|
|
|
///
|
2001-08-01 13:28:45 +00:00
|
|
|
bool isArray() const { return true; }
|
2001-06-25 00:06:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|