]> git.lyx.org Git - lyx.git/blob - src/mathed/math_parinset.h
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_parinset.h
1 #ifndef MATH_PARINSET_H
2 #define MATH_PARINSET_H
3
4
5 #include "math_hullinset.h"
6
7 class MathParInset : public MathHullInset {
8 public:
9         ///
10         MathParInset() {}
11         ///
12         MathParInset(MathArray const & ar);
13         ///
14         mode_type currentMode() const { return TEXT_MODE; }
15         ///
16         void metrics(MathMetricsInfo & mi) const;
17         ///
18         void draw(MathPainterInfo &, int x, int y) const;
19         ///
20         void infoize(std::ostream & os) const;
21         ///
22         void write(WriteStream & os) const;
23 };
24
25 #endif