lyx_mirror/src/mathed/math_splitinset.h

28 lines
429 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATH_SPLITINSET_H
#define MATH_SPLITINSET_H
#include "math_gridinset.h"
#include "LString.h"
class MathSplitInset : public MathGridInset {
public:
///
explicit MathSplitInset(string const & name);
///
InsetBase * clone() const;
///
void write(WriteStream & os) const;
///
int defaultColSpace(col_type) { return 0; }
///
char defaultColAlign(col_type);
private:
///
string name_;
};
#endif