diff options
| author | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-06 19:04:24 +0500 |
|---|---|---|
| committer | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-06 19:04:24 +0500 |
| commit | 793fa5a91f24358aa7ce21abf6ee4e93a17b04ee (patch) | |
| tree | e81d1e60ffdf068ac1e93e8d36d9c2046b2d7c50 /fluid/Project.h | |
| parent | b4995f979d127cea667b4e2b71c91e9db4ab52ef (diff) | |
wip
Diffstat (limited to 'fluid/Project.h')
| -rw-r--r-- | fluid/Project.h | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/fluid/Project.h b/fluid/Project.h index f920c6ff3..e68ad6d4e 100644 --- a/fluid/Project.h +++ b/fluid/Project.h @@ -27,12 +27,8 @@ // ---- project class declaration -namespace fld { - -namespace app { - class Layout_Preset; - extern Layout_Preset *default_layout_preset; -} // namespace app +class Layout_Preset; +extern Layout_Preset *default_layout_preset; /** Data and settings for a FLUID project file. @@ -41,13 +37,13 @@ class Project { public: // Member Variables // Undo actions for this Project. - proj::Undo undo; + Undo undo; // Manage the node tree of the project. - node::Tree tree; + Tree tree; // Project internationalization. - proj::I18n i18n; + I18n i18n; /// If set, generate code to include the header file form the c++ file int include_H_from_C; @@ -83,7 +79,7 @@ public: // Member Variables int modflag_c; /// Currently used layout preset. - app::Layout_Preset *layout; + Layout_Preset *layout; public: // Methods Project(); @@ -122,6 +118,4 @@ public: // Methods void set_modflag(int mf, int mfc = -1); }; -} // namespace fld - #endif // FLUID_PROJECT_H |
