summaryrefslogtreecommitdiff
path: root/FL/Fl_Chart.H
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-16 22:00:04 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-16 22:00:04 +0000
commitca41e69c27af0dee60b8186d06f5be0713d1a051 (patch)
tree85fd248b68d4d00414fef6488016da975f739bd2 /FL/Fl_Chart.H
parent18312d3c1fb325c0d9ac92e98137cebbcadb563c (diff)
Updated headers to support WIN32 and OS/2 DLLs.
Updated VC++ project files. Removed dummymain.c (no longer needed). git-svn-id: file:///fltk/svn/fltk/trunk@278 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Chart.H')
-rw-r--r--FL/Fl_Chart.H20
1 files changed, 10 insertions, 10 deletions
diff --git a/FL/Fl_Chart.H b/FL/Fl_Chart.H
index 8750f7056..30cf96827 100644
--- a/FL/Fl_Chart.H
+++ b/FL/Fl_Chart.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Chart.H,v 1.5 1999/02/01 20:14:58 mike Exp $"
+// "$Id: Fl_Chart.H,v 1.6 1999/02/16 21:59:35 mike Exp $"
//
// Forms chart header file for the Fast Light Tool Kit (FLTK).
//
@@ -59,18 +59,18 @@ class Fl_Chart : public Fl_Widget {
uchar autosize_;
uchar textfont_,textsize_,textcolor_;
protected:
- void draw();
+ FL_EXPORT void draw();
public:
- Fl_Chart(int,int,int,int,const char * = 0);
- void clear();
- void add(double, const char * =0, uchar=0);
- void insert(int, double, const char * =0, uchar=0);
- void replace(int, double, const char * =0, uchar=0);
+ FL_EXPORT Fl_Chart(int,int,int,int,const char * = 0);
+ FL_EXPORT void clear();
+ FL_EXPORT void add(double, const char * =0, uchar=0);
+ FL_EXPORT void insert(int, double, const char * =0, uchar=0);
+ FL_EXPORT void replace(int, double, const char * =0, uchar=0);
void bounds(double *a,double *b) const {*a = min; *b = max;}
- void bounds(double a,double b);
+ FL_EXPORT void bounds(double a,double b);
int size() const {return numb;}
int maxsize() const {return maxnumb;}
- void maxsize(int);
+ FL_EXPORT void maxsize(int);
Fl_Font textfont() const {return (Fl_Font)textfont_;}
void textfont(uchar s) {textfont_ = s;}
uchar textsize() const {return textsize_;}
@@ -84,5 +84,5 @@ public:
#endif
//
-// End of "$Id: Fl_Chart.H,v 1.5 1999/02/01 20:14:58 mike Exp $".
+// End of "$Id: Fl_Chart.H,v 1.6 1999/02/16 21:59:35 mike Exp $".
//