]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/Spacing.h
6138139957f4b768fa535fb273ff7d26a3f661f2
[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
12 #ifndef SPACING_H
13 #define SPACING_H
14
15 class Spacing {
16 public:
17         ///
18         enum Space {
19                 Single,
20                 Onehalf,
21                 Double,
22                 Other,
23                 Default
24         };
25
26         void set(Spacing::Space, float = 1.0) {}
27 };
28
29 #endif // NOT SPACING_H