summaryrefslogtreecommitdiff
path: root/FL/Fl_Clock.H
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-08-14 16:49:38 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-08-14 16:49:38 +0000
commite136d5e1454d406ac458f5503bdb6b4a76f03232 (patch)
tree75fa297ba180eb97b06493c68e243ee66bdc8bf9 /FL/Fl_Clock.H
parent1aecada52cd42120137dda305c263fde27518352 (diff)
More FL_EXPORT fun...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2584 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Clock.H')
-rw-r--r--FL/Fl_Clock.H30
1 files changed, 15 insertions, 15 deletions
diff --git a/FL/Fl_Clock.H b/FL/Fl_Clock.H
index 4b36b2e13..c5b3f0c6e 100644
--- a/FL/Fl_Clock.H
+++ b/FL/Fl_Clock.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Clock.H,v 1.6.2.4.2.1 2002/01/01 15:11:27 easysw Exp $"
+// "$Id: Fl_Clock.H,v 1.6.2.4.2.2 2002/08/14 16:49:37 easysw Exp $"
//
// Clock header file for the Fast Light Tool Kit (FLTK).
//
@@ -38,17 +38,17 @@
// a Fl_Clock_Output can be used to display a program-supplied time:
-class Fl_Clock_Output : public Fl_Widget {
+class FL_EXPORT Fl_Clock_Output : public Fl_Widget {
int hour_, minute_, second_;
ulong value_;
- FL_EXPORT void drawhands(Fl_Color,Fl_Color); // part of draw
+ void drawhands(Fl_Color,Fl_Color); // part of draw
protected:
- FL_EXPORT void draw(int, int, int, int);
- FL_EXPORT void draw();
+ void draw(int, int, int, int);
+ void draw();
public:
- 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
+ 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
ulong value() const {return value_;}
int hour() const {return hour_;}
int minute() const {return minute_;}
@@ -57,17 +57,17 @@ public:
// a Fl_Clock displays the current time always by using a timeout:
-class Fl_Clock : public Fl_Clock_Output {
+class FL_EXPORT Fl_Clock : public Fl_Clock_Output {
public:
- FL_EXPORT int handle(int);
- 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();
+ int handle(int);
+ 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();
};
#endif
//
-// End of "$Id: Fl_Clock.H,v 1.6.2.4.2.1 2002/01/01 15:11:27 easysw Exp $".
+// End of "$Id: Fl_Clock.H,v 1.6.2.4.2.2 2002/08/14 16:49:37 easysw Exp $".
//