diff options
Diffstat (limited to 'fluid/Fl_Type.h')
| -rw-r--r-- | fluid/Fl_Type.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fluid/Fl_Type.h b/fluid/Fl_Type.h index e80842ab8..b8d860373 100644 --- a/fluid/Fl_Type.h +++ b/fluid/Fl_Type.h @@ -213,6 +213,7 @@ public: }; class Fl_Decl_Type : public Fl_Type { +protected: char public_; char static_; public: @@ -227,6 +228,19 @@ public: int pixmapID() { return 10; } }; +class Fl_Data_Type : public Fl_Decl_Type { + const char *filename_; +public: + Fl_Type *make(); + void write_code1(); + void write_code2(); + void open(); + virtual const char *type_name() {return "data";} + void write_properties(); + void read_property(const char *); + int pixmapID() { return 49; } +}; + class Fl_DeclBlock_Type : public Fl_Type { const char* after; char public_; |
