]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathDim.h
Fix bug 2474; partial fix for 1777. Added last_reference_ member to QRef class and...
[lyx.git] / src / mathed / InsetMathDim.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathDim.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_DIMINSET_H
13 #define MATH_DIMINSET_H
14
15 #include <boost/assert.hpp>
16 #include "InsetMath.h"
17
18 namespace lyx {
19
20 class PainterInfo;
21
22
23 /// things that need the dimension cache
24 class InsetMathDim : public InsetMath {
25 public:
26         ///
27         InsetMathDim();
28
29         ///
30         void setPosCache(PainterInfo const & pi, int x, int y) const;
31 };
32
33
34 } // namespace lyx
35
36 #endif