summaryrefslogtreecommitdiff
path: root/fluid/app/shell_command.h
diff options
context:
space:
mode:
Diffstat (limited to 'fluid/app/shell_command.h')
-rw-r--r--fluid/app/shell_command.h17
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();