]> git.lyx.org Git - lyx.git/blob - src/Floating.C
ParagraphParameters and SharedContainer
[lyx.git] / src / Floating.C
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1998-2000 The LyX Team.
7  *
8  * ======================================================
9  */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "Floating.h"
18
19
20 Floating::Floating() 
21 {}
22
23
24 Floating::Floating(string const & type, string const & placement,
25                    string const & ext, string const & within,
26                    string const & style, string const & name,
27                    bool builtin)
28         : type_(type), placement_(placement), ext_(ext), within_(within),
29           style_(style), name_(name), builtin_(builtin)
30 {}
31
32
33 string const & Floating::type() const
34 {
35         return type_;
36 }
37
38
39 string const & Floating::placement() const
40 {
41         return placement_;
42 }
43
44
45 string const & Floating::name() const
46 {
47         return name_;
48 }
49
50
51 bool Floating::builtin() const
52 {
53         return builtin_;
54 }