]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/Spacing.h
a83ca24756c263023b15829c61043917f163c3c8
[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 SPACING_H
17 #define SPACING_H
18
19 #include <string>
20
21 class Spacing {
22 public:
23         ///
24         enum Space {
25                 Single,
26                 Onehalf,
27                 Double,
28                 Other,
29                 Default
30         };
31         ///
32         void set(Spacing::Space, float = 1.0) {}
33         ///
34         void set(Spacing::Space, std::string const &) {}
35 };
36
37 #endif // NOT SPACING_H