2001-09-05 12:57:13 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
#ifndef MATH_SPLITINSET_H
|
|
|
|
#define MATH_SPLITINSET_H
|
|
|
|
|
|
|
|
#include "math_gridinset.h"
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
class MathSplitInset : public MathGridInset {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
explicit MathSplitInset(int n);
|
|
|
|
///
|
|
|
|
MathInset * clone() const;
|
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
void write(WriteStream & os) const;
|
2001-09-05 12:57:13 +00:00
|
|
|
///
|
2001-11-20 17:16:21 +00:00
|
|
|
int defaultColSpace(col_type) { return 0; }
|
2001-09-05 12:57:13 +00:00
|
|
|
///
|
2001-11-20 17:16:21 +00:00
|
|
|
char defaultColAlign(col_type) { return 'l'; }
|
2001-09-05 12:57:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|