]> git.lyx.org Git - features.git/blob - src/Floating.h
b845ea289e45257978f2f899b6d38d6a17a09e60
[features.git] / src / Floating.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *
7  *           Copyright 1998-2000 The LyX Team.
8  *
9  * ======================================================
10  */
11
12 #ifndef FLOATING_H
13 #define FLOATING_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 class Floating {
20 public:
21         ///
22         string type;
23         ///
24         string placement;
25         ///
26         string ext;
27         ///
28         string within;
29         ///
30         string style;
31         ///
32         string name;
33         ///
34         bool builtin;
35 };
36 #endif