// wxDisplayFactory: allows to create wxDisplay objects
// ----------------------------------------------------------------------------
-class WXDLLEXPORT wxDisplayFactory
+class WXDLLIMPEXP_CORE wxDisplayFactory
{
public:
wxDisplayFactory() { }
// wxDisplayImpl: base class for all wxDisplay implementations
// ----------------------------------------------------------------------------
-class WXDLLEXPORT wxDisplayImpl
+class WXDLLIMPEXP_CORE wxDisplayImpl
{
public:
// virtual dtor for this base class
friend class wxDisplayFactory;
- DECLARE_NO_COPY_CLASS(wxDisplayImpl)
+ wxDECLARE_NO_COPY_CLASS(wxDisplayImpl);
};
// ----------------------------------------------------------------------------
// this is a stub implementation using single/main display only, it is
// available even if wxUSE_DISPLAY == 0
-class WXDLLEXPORT wxDisplayFactorySingle : public wxDisplayFactory
+class WXDLLIMPEXP_CORE wxDisplayFactorySingle : public wxDisplayFactory
{
public:
virtual wxDisplayImpl *CreateDisplay(unsigned n);