Added FL_EXPORT for some more classes and structs to clean up MS DLL building.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8301 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2011-01-22 22:40:11 +00:00
parent 1c38a0f2f7
commit c54e998967
3 changed files with 5 additions and 5 deletions

View File

@ -89,7 +89,7 @@ struct Fl_Help_Link
*/
/** Fl_Help_View font stack element definition. */
struct Fl_Help_Font_Style {
struct FL_EXPORT Fl_Help_Font_Style {
Fl_Font f; ///< Font
Fl_Fontsize s; ///< Font Size
Fl_Color c; ///< Font Color
@ -102,7 +102,7 @@ struct Fl_Help_Font_Style {
/** Fl_Help_View font stack definition. */
const size_t MAX_FL_HELP_FS_ELTS = 100;
struct Fl_Help_Font_Stack {
struct FL_EXPORT Fl_Help_Font_Stack {
/** font stack construction, initialize attributes. */
Fl_Help_Font_Stack() {
nfonts_ = 0;
@ -221,7 +221,7 @@ class FL_EXPORT Fl_Help_View : public Fl_Group // Help viewer widget
Fl_Font textfont_; ///< Default font for text
Fl_Fontsize textsize_; ///< Default font size
const char *value_; ///< HTML text value
Fl_Help_Font_Stack fstack_; ///< font stack management
Fl_Help_Font_Stack fstack_; ///< font stack management
int nblocks_, ///< Number of blocks/paragraphs
ablocks_; ///< Allocated blocks
Fl_Help_Block *blocks_; ///< Blocks

View File

@ -220,7 +220,7 @@ private:
int _selecting;
// An STL-ish vector without templates
class IntVector {
class FL_EXPORT IntVector {
int *arr;
unsigned int _size;
void init() {

View File

@ -60,7 +60,7 @@ public:
};
private:
// An STL-ish vector without templates
class CharVector {
class FL_EXPORT CharVector {
char *arr;
int _size;
void init() {