]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/Spacing.h
Added FontInfo.cpp to tex2lyx sources to make it compilable again
[lyx.git] / src / tex2lyx / Spacing.h
1 // -*- C++ -*-
2 /**
3  * \file tex2lyx/Spacing.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  * This class is just a dummy version of that in the main LyX source tree
12  * to enable tex2lyx to use LyX's textclass classes and not have to
13  * re-invent the wheel.
14  */
15
16 #ifndef TEX2LYX_SPACING_H
17 #define TEX2LYX_SPACING_H
18
19 #include <string>
20
21
22 namespace lyx {
23
24 class Spacing {
25 public:
26         ///
27         enum Space {
28                 Single,
29                 Onehalf,
30                 Double,
31                 Other,
32                 Default
33         };
34         ///
35         void set(Spacing::Space, double = 1.0) {}
36         ///
37         void set(Spacing::Space, std::string const &) {}
38 };
39
40
41 } // namespace lyx
42
43 #endif // TEX2LYX_SPACING_H