Add import/export attributes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35056 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2005-08-03 00:53:09 +00:00
parent 20123d4958
commit 94c7b08817
13 changed files with 16 additions and 16 deletions

View File

@@ -34,7 +34,7 @@ class WXDLLEXPORT wxTabView;
// wxNotebook // wxNotebook
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxNotebook : public wxNotebookBase class WXDLLIMPEXP_CORE wxNotebook : public wxNotebookBase
{ {
public: public:
// ctors // ctors

View File

@@ -19,7 +19,7 @@
#include "wx/listbox.h" #include "wx/listbox.h"
class wxCheckListBox : public wxCheckListBoxBase class WXDLLIMPEXP_CORE wxCheckListBox : public wxCheckListBoxBase
{ {
DECLARE_DYNAMIC_CLASS(wxCheckListBox) DECLARE_DYNAMIC_CLASS(wxCheckListBox)

View File

@@ -18,7 +18,7 @@
#if wxUSE_CLIPBOARD #if wxUSE_CLIPBOARD
class wxDataObject; class WXDLLIMPEXP_CORE wxDataObject;
struct wxDataIdToDataObject; struct wxDataIdToDataObject;
#include "wx/list.h" #include "wx/list.h"
@@ -41,7 +41,7 @@ bool WXDLLEXPORT wxGetClipboardFormatName(wxDataFormat dataFormat, char *formatN
// wxClipboard // wxClipboard
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class wxClipboard : public wxClipboardBase class WXDLLIMPEXP_CORE wxClipboard : public wxClipboardBase
{ {
public: public:
wxClipboard(); wxClipboard();

View File

@@ -12,7 +12,7 @@
#ifndef _WX_MOTIF_DATAFORM_H #ifndef _WX_MOTIF_DATAFORM_H
#define _WX_MOTIF_DATAFORM_H #define _WX_MOTIF_DATAFORM_H
class wxDataFormat class WXDLLIMPEXP_CORE wxDataFormat
{ {
public: public:
// the clipboard formats under Xt are Atoms // the clipboard formats under Xt are Atoms

View File

@@ -18,7 +18,7 @@
// wxDataObject is the same as wxDataObjectBase under wxMotif // wxDataObject is the same as wxDataObjectBase under wxMotif
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxDataObject : public wxDataObjectBase class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
{ {
public: public:
virtual ~wxDataObject(); virtual ~wxDataObject();

View File

@@ -19,7 +19,7 @@
// wxBitmapDataObject is a specialization of wxDataObject for bitmaps // wxBitmapDataObject is a specialization of wxDataObject for bitmaps
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxBitmapDataObject : public wxBitmapDataObjectBase class WXDLLIMPEXP_CORE wxBitmapDataObject : public wxBitmapDataObjectBase
{ {
public: public:
// ctors // ctors

View File

@@ -18,7 +18,7 @@
#include "wx/dcclient.h" #include "wx/dcclient.h"
class wxMemoryDC : public wxWindowDC class WXDLLIMPEXP_CORE wxMemoryDC : public wxWindowDC
{ {
DECLARE_DYNAMIC_CLASS(wxMemoryDC) DECLARE_DYNAMIC_CLASS(wxMemoryDC)

View File

@@ -23,7 +23,7 @@
class wxXFont; class wxXFont;
// Font // Font
class wxFont : public wxFontBase class WXDLLIMPEXP_CORE wxFont : public wxFontBase
{ {
public: public:
// ctors and such // ctors and such

View File

@@ -20,13 +20,13 @@
#include "wx/font.h" #include "wx/font.h"
#include "wx/arrstr.h" #include "wx/arrstr.h"
class wxFrame; class WXDLLIMPEXP_CORE wxFrame;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Menu // Menu
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxMenu : public wxMenuBase class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase
{ {
public: public:
// ctors & dtor // ctors & dtor
@@ -112,7 +112,7 @@ private:
// Menu Bar // Menu Bar
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxMenuBar : public wxMenuBarBase class WXDLLIMPEXP_CORE wxMenuBar : public wxMenuBarBase
{ {
public: public:
wxMenuBar() { Init(); } wxMenuBar() { Init(); }

View File

@@ -24,7 +24,7 @@ class WXDLLEXPORT wxMenuBar;
// wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour // wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxMenuItem : public wxMenuItemBase class WXDLLIMPEXP_CORE wxMenuItem : public wxMenuItemBase
{ {
public: public:
// ctor & dtor // ctor & dtor

View File

@@ -20,7 +20,7 @@
// wxPopupWindow // wxPopupWindow
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxPopupWindow : public wxPopupWindowBase class WXDLLIMPEXP_CORE wxPopupWindow : public wxPopupWindowBase
{ {
public: public:
wxPopupWindow() { Init(); } wxPopupWindow() { Init(); }

View File

@@ -16,7 +16,7 @@
#pragma interface "toplevel.h" #pragma interface "toplevel.h"
#endif #endif
class wxTopLevelWindowMotif : public wxTopLevelWindowBase class WXDLLIMPEXP_CORE wxTopLevelWindowMotif : public wxTopLevelWindowBase
{ {
public: public:
wxTopLevelWindowMotif() { Init(); } wxTopLevelWindowMotif() { Init(); }

View File

@@ -22,7 +22,7 @@
// wxWindow class for Motif - see also wxWindowBase // wxWindow class for Motif - see also wxWindowBase
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxWindow : public wxWindowBase class WXDLLIMPEXP_CORE wxWindow : public wxWindowBase
{ {
friend class WXDLLEXPORT wxDC; friend class WXDLLEXPORT wxDC;
friend class WXDLLEXPORT wxWindowDC; friend class WXDLLEXPORT wxWindowDC;