]> git.lyx.org Git - lyx.git/blob - src/mathed/math_parinset.h
move code from nestinset
[lyx.git] / src / mathed / math_parinset.h
1 #ifndef MATH_PARINSET_H
2 #define MATH_PARINSET_H
3
4 #include "math_hullinset.h"
5
6 class MathParInset : public MathHullInset {
7 public:
8         ///
9         MathParInset();
10         ///
11         MathParInset * asParInset() { return this; }
12         ///
13         void metrics(MathMetricsInfo & mi) const;
14         ///
15         void draw(MathPainterInfo &, int x, int y) const;
16         ///
17         void infoize(std::ostream & os) const;
18         ///
19         void write(WriteStream & os) const;
20 };
21
22 #endif