diff options
| author | Matthias Melcher <github@matthiasm.com> | 2025-03-08 00:14:09 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2025-03-08 00:14:27 +0100 |
| commit | 15ad447e2a0301b2aa4ea350615ae71f0e5e5ef5 (patch) | |
| tree | 706f8f9a6317f1074951e6174a4857ebafbca117 /fluid/app/shell_command.h | |
| parent | ca22660bbb7efe4b38ab5af6a233a1ef5ef33389 (diff) | |
Fluid: last incremental chage, restructuring
Diffstat (limited to 'fluid/app/shell_command.h')
| -rw-r--r-- | fluid/app/shell_command.h | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/fluid/app/shell_command.h b/fluid/app/shell_command.h index b45e2f8cc..3f5508493 100644 --- a/fluid/app/shell_command.h +++ b/fluid/app/shell_command.h @@ -35,6 +35,15 @@ # include <unistd.h> #endif +namespace fld { +namespace io { + +class Project_Reader; +class Project_Writer; + +} // namespace io +} // namespace fld + struct Fl_Menu_Item; class Fl_Widget; class Fl_Preferences; @@ -105,8 +114,8 @@ public: void run(); void read(Fl_Preferences &prefs); void write(Fl_Preferences &prefs, bool save_location = false); - void read(class Fd_Project_Reader*); - void write(class Fd_Project_Writer*); + void read(class fld::io::Project_Reader*); + void write(class fld::io::Project_Writer*); void update_shell_menu(); bool is_active(); }; @@ -132,8 +141,8 @@ public: // int save(const std::string &filename); void read(Fl_Preferences &prefs, Fd_Tool_Store storage); void write(Fl_Preferences &prefs, Fd_Tool_Store storage); - void read(class Fd_Project_Reader*); - void write(class Fd_Project_Writer*); + void read(class fld::io::Project_Reader*); + void write(class fld::io::Project_Writer*); void rebuild_shell_menu(); void update_settings_dialog(); |
