diff options
Diffstat (limited to 'FL/Fl_Clock.H')
| -rw-r--r-- | FL/Fl_Clock.H | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/FL/Fl_Clock.H b/FL/Fl_Clock.H index 8a17ee338..cc287fb9f 100644 --- a/FL/Fl_Clock.H +++ b/FL/Fl_Clock.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Clock.H,v 1.5 1999/01/13 15:45:48 mike Exp $" +// "$Id: Fl_Clock.H,v 1.6 1999/02/16 21:59:36 mike Exp $" // // Clock header file for the Fast Light Tool Kit (FLTK). // @@ -41,14 +41,14 @@ class Fl_Clock_Output : public Fl_Widget { int hour_, minute_, second_; ulong value_; - void drawhands(Fl_Color,Fl_Color); // part of draw + FL_EXPORT void drawhands(Fl_Color,Fl_Color); // part of draw protected: - void draw(int, int, int, int); - void draw(); + FL_EXPORT void draw(int, int, int, int); + FL_EXPORT void draw(); public: - Fl_Clock_Output(int x,int y,int w,int h, const char *l = 0); - void value(ulong v); // set to this Unix time - void value(int,int,int); // set hour, minute, second + FL_EXPORT Fl_Clock_Output(int x,int y,int w,int h, const char *l = 0); + FL_EXPORT void value(ulong v); // set to this Unix time + FL_EXPORT void value(int,int,int); // set hour, minute, second ulong value() const {return value_;} int hour() const {return hour_;} int minute() const {return minute_;} @@ -58,16 +58,16 @@ public: // a Fl_Clock displays the current time always by using a timeout: class Fl_Clock : public Fl_Clock_Output { - int handle(int); + FL_EXPORT int handle(int); public: - void update(); - Fl_Clock(int x,int y,int w,int h, const char *l = 0); - Fl_Clock(uchar t,int x,int y,int w,int h, const char *l); - ~Fl_Clock(); + FL_EXPORT void update(); + FL_EXPORT Fl_Clock(int x,int y,int w,int h, const char *l = 0); + FL_EXPORT Fl_Clock(uchar t,int x,int y,int w,int h, const char *l); + FL_EXPORT ~Fl_Clock(); }; #endif // -// End of "$Id: Fl_Clock.H,v 1.5 1999/01/13 15:45:48 mike Exp $". +// End of "$Id: Fl_Clock.H,v 1.6 1999/02/16 21:59:36 mike Exp $". // |
