]> git.lyx.org Git - lyx.git/blob - src/mathed/math_binominset.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_binominset.h
1 // -*- C++ -*-
2 #ifndef MATH_BINOMINSET_H
3 #define MATH_DINOMINSET_H
4
5 #include "math_fracbase.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11 /** Binom like objects
12     \author André Pönitz
13  */
14 class MathBinomInset : public MathFracbaseInset {
15 public:
16         ///
17         MathBinomInset();
18         ///
19         MathInset * clone() const;
20         ///
21         void write(WriteStream & os) const;
22         ///
23         void normalize(NormalStream &) const;
24         ///
25         void metrics(MathMetricsInfo const & st) const;
26         ///
27         void draw(Painter &, int x, int y) const;
28 private:
29         ///
30         int dw() const;
31 };
32
33 #endif