diff options
| author | Manolo Gouy <Manolo> | 2011-05-20 16:39:06 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2011-05-20 16:39:06 +0000 |
| commit | b87a0b73907b0d26bae5b7414f74e217706a70d8 (patch) | |
| tree | 3ef9fd3d36dfcb069220adeca2c16c5ee906c93f | |
| parent | 422a2570a8da01e2fc1bf15855db82b92e350aa3 (diff) | |
Added missing FL_EXPORT class declarations.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8699 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | FL/Fl_Paged_Device.H | 2 | ||||
| -rw-r--r-- | FL/Fl_PostScript.H | 4 | ||||
| -rw-r--r-- | FL/Fl_Printer.H | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Paged_Device.H b/FL/Fl_Paged_Device.H index 5ef4a1137..3aefb987a 100644 --- a/FL/Fl_Paged_Device.H +++ b/FL/Fl_Paged_Device.H @@ -44,7 +44,7 @@ This class has no public constructor: don't instantiate it; use Fl_Printer or Fl_PostScript_File_Device instead. */ -class Fl_Paged_Device : public Fl_Surface_Device { +class FL_EXPORT Fl_Paged_Device : public Fl_Surface_Device { public: /** \brief Possible page formats. diff --git a/FL/Fl_PostScript.H b/FL/Fl_PostScript.H index 24c2c3f8d..0bb5d2471 100644 --- a/FL/Fl_PostScript.H +++ b/FL/Fl_PostScript.H @@ -61,7 +61,7 @@ <br> FLTK standard fonts are output using PostScript standard fonts: Helvetica, Courier, Times (and their bold, oblique, italic variants). */ -class Fl_PostScript_Graphics_Driver : public Fl_Graphics_Driver { +class FL_EXPORT Fl_PostScript_Graphics_Driver : public Fl_Graphics_Driver { public: static const char *class_id; const char *class_name() {return class_id;}; @@ -213,7 +213,7 @@ class Clip { /** \brief To send graphical output to a PostScript file. */ -class Fl_PostScript_File_Device : public Fl_Paged_Device { +class FL_EXPORT Fl_PostScript_File_Device : public Fl_Paged_Device { #ifdef __APPLE__ Fl_CGContextRef gc; #endif diff --git a/FL/Fl_Printer.H b/FL/Fl_Printer.H index ab48d2a46..ea67e4fc2 100644 --- a/FL/Fl_Printer.H +++ b/FL/Fl_Printer.H @@ -151,7 +151,7 @@ public: <li>Mac OS X platform: all graphics requests print as on display. </ul> */ -class Fl_Printer : public Fl_Paged_Device { +class FL_EXPORT Fl_Printer : public Fl_Paged_Device { public: static const char *class_id; const char *class_name() {return class_id;}; |
