Add FL_EXPORT to several classes to fix MS VC++ dll builds (STR #2632).
Remove FL_EXPORT from fl_clip_region() since this is an inline function
on all platforms (and issued a warning when building fltkdll with MS VC++).
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8726 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
// Input widget for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2010 by Bill Spitzak and others.
// Copyright 1998-2011 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@ -40,6 +40,15 @@
@@ -40,6 +40,15 @@
#include<FL/fl_ask.H>
#include"flstring.h"
#if defined(FL_DLL) // really needed for c'tors for MS VC++ only
#include<FL/Fl_Float_Input.H>
#include<FL/Fl_Int_Input.H>
#include<FL/Fl_Multiline_Input.H>
#include<FL/Fl_Output.H>
#include<FL/Fl_Multiline_Output.H>
#include<FL/Fl_Secret_Input.H>
#endif
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif
@ -763,6 +772,51 @@ Fl_Input::Fl_Input(int X, int Y, int W, int H, const char *l)
@@ -763,6 +772,51 @@ Fl_Input::Fl_Input(int X, int Y, int W, int H, const char *l)