]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/Spacing.h
Removed all redundant using directives from the source.
[lyx.git] / src / tex2lyx / Spacing.h
1 // -*- C++ -*-
2 /**
3  * \file 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 class Spacing {
20 public:
21         ///
22         enum Space {
23                 Single,
24                 Onehalf,
25                 Double,
26                 Other,
27                 Default
28         };
29
30         void set(Spacing::Space, float = 1.0) {}
31 };
32
33 #endif // NOT SPACING_H