]> git.lyx.org Git - features.git/blob - src/mathed/InsetMathDim.cpp
Rename files in src/mathed and src/graphics from .C to .cpp, step 2
[features.git] / src / mathed / InsetMathDim.cpp
1 /**
2  * \file InsetMathDim.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathDim.h"
14
15 #include "BufferView.h"
16 #include "coordcache.h"
17 #include "debug.h"
18 #include "metricsinfo.h"
19
20
21 namespace lyx {
22
23
24 InsetMathDim::InsetMathDim()
25 {}
26
27
28 void InsetMathDim::setPosCache(PainterInfo const & pi, int x, int y) const
29 {
30         //lyxerr << "InsetMathDim: cache to " << x << " " << y << std::endl;
31         pi.base.bv->coordCache().insets().add(this, x, y);
32 }
33
34
35 } // namespace lyx