diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-08-14 16:49:38 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-08-14 16:49:38 +0000 |
| commit | e136d5e1454d406ac458f5503bdb6b4a76f03232 (patch) | |
| tree | 75fa297ba180eb97b06493c68e243ee66bdc8bf9 /FL/Fl_Chart.H | |
| parent | 1aecada52cd42120137dda305c263fde27518352 (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_Chart.H')
| -rw-r--r-- | FL/Fl_Chart.H | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/FL/Fl_Chart.H b/FL/Fl_Chart.H index a4d697ead..11af43fbb 100644 --- a/FL/Fl_Chart.H +++ b/FL/Fl_Chart.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Chart.H,v 1.6.2.3.2.2 2002/01/01 15:11:27 easysw Exp $" +// "$Id: Fl_Chart.H,v 1.6.2.3.2.3 2002/08/14 16:49:37 easysw Exp $" // // Forms chart header file for the Fast Light Tool Kit (FLTK). // @@ -50,7 +50,7 @@ struct FL_CHART_ENTRY { char str[FL_CHART_LABEL_MAX+1]; }; -class Fl_Chart : public Fl_Widget { +class FL_EXPORT Fl_Chart : public Fl_Widget { int numb; int maxnumb; int sizenumb; @@ -60,18 +60,18 @@ class Fl_Chart : public Fl_Widget { uchar textfont_,textsize_; unsigned textcolor_; protected: - FL_EXPORT void draw(); + void draw(); public: - FL_EXPORT Fl_Chart(int,int,int,int,const char * = 0); - FL_EXPORT void clear(); - FL_EXPORT void add(double, const char * =0, unsigned=0); - FL_EXPORT void insert(int, double, const char * =0, unsigned=0); - FL_EXPORT void replace(int, double, const char * =0, unsigned=0); + Fl_Chart(int,int,int,int,const char * = 0); + void clear(); + void add(double, const char * =0, unsigned=0); + void insert(int, double, const char * =0, unsigned=0); + void replace(int, double, const char * =0, unsigned=0); void bounds(double *a,double *b) const {*a = min; *b = max;} - FL_EXPORT void bounds(double a,double b); + void bounds(double a,double b); int size() const {return numb;} int maxsize() const {return maxnumb;} - FL_EXPORT void maxsize(int); + void maxsize(int); Fl_Font textfont() const {return (Fl_Font)textfont_;} void textfont(uchar s) {textfont_ = s;} uchar textsize() const {return textsize_;} @@ -85,5 +85,5 @@ public: #endif // -// End of "$Id: Fl_Chart.H,v 1.6.2.3.2.2 2002/01/01 15:11:27 easysw Exp $". +// End of "$Id: Fl_Chart.H,v 1.6.2.3.2.3 2002/08/14 16:49:37 easysw Exp $". // |
