]> git.lyx.org Git - lyx.git/blob - src/Floating.C
fix typo that put too many include paths for most people
[lyx.git] / src / Floating.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1998-2001 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::ext() const
46 {
47         return ext_;
48 }
49
50
51 string const & Floating::within() const
52 {
53         return within_;
54 }
55
56
57 string const & Floating::style() const
58 {
59         return style_;
60 }
61
62
63 string const & Floating::name() const
64 {
65         return name_;
66 }
67
68
69 bool Floating::builtin() const
70 {
71         return builtin_;
72 }