]> git.saurik.com Git - wxWidgets.git/commitdiff
Added some WXDLLEXPORTs
authorRobin Dunn <robin@alldunn.com>
Tue, 28 Dec 1999 21:10:49 +0000 (21:10 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 28 Dec 1999 21:10:49 +0000 (21:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5131 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/html/htmlcell.h

index 72f78c844b5f4a2cad1ff377ae07d79b932d43fa..4ef6cf4a6df7fe0f9b6493261c71bdba3c052fec 100644 (file)
@@ -25,9 +25,9 @@
 #include "wx/window.h"
 
 
 #include "wx/window.h"
 
 
-class wxHtmlLinkInfo;
-class wxHtmlCell;
-class wxHtmlContainerCell;
+class WXDLLEXPORT wxHtmlLinkInfo;
+class WXDLLEXPORT wxHtmlCell;
+class WXDLLEXPORT wxHtmlContainerCell;
 
 //--------------------------------------------------------------------------------
 // wxHtmlCell
 
 //--------------------------------------------------------------------------------
 // wxHtmlCell
@@ -96,7 +96,7 @@ class WXDLLEXPORT wxHtmlCell : public wxObject
                 // Parent is pointer to wxHtmlWindow that generated the event
                 // HINT: if this handling is not enough for you you should use
                 //       wxHtmlBinderCell
                 // Parent is pointer to wxHtmlWindow that generated the event
                 // HINT: if this handling is not enough for you you should use
                 //       wxHtmlBinderCell
-                
+
         virtual bool AdjustPagebreak(int *pagebreak);
                 // This method used to adjust pagebreak position. The parameter is
                 // variable that contains y-coordinate of page break (= horizontal line that
         virtual bool AdjustPagebreak(int *pagebreak);
                 // This method used to adjust pagebreak position. The parameter is
                 // variable that contains y-coordinate of page break (= horizontal line that
@@ -106,7 +106,7 @@ class WXDLLEXPORT wxHtmlCell : public wxObject
                 //
                 // Returned value : true if pagebreak was modified, false otherwise
                 // Usage : while (container->AdjustPagebreak(&p)) {}
                 //
                 // Returned value : true if pagebreak was modified, false otherwise
                 // Usage : while (container->AdjustPagebreak(&p)) {}
-                
+
         void SetCanLiveOnPagebreak(bool can) {m_CanLiveOnPagebreak = can;}
                 // Sets cell's behaviour on pagebreaks (see AdjustPagebreak). Default
                 // is true - the cell can be split on two pages
         void SetCanLiveOnPagebreak(bool can) {m_CanLiveOnPagebreak = can;}
                 // Sets cell's behaviour on pagebreaks (see AdjustPagebreak). Default
                 // is true - the cell can be split on two pages
@@ -308,21 +308,21 @@ class WXDLLEXPORT wxHtmlWidgetCell : public wxHtmlCell
 //                  Internal data structure. It represents hypertext link
 //--------------------------------------------------------------------------------
 
 //                  Internal data structure. It represents hypertext link
 //--------------------------------------------------------------------------------
 
-class wxHtmlLinkInfo : public wxObject
+class WXDLLEXPORT wxHtmlLinkInfo : public wxObject
 {
     public:
         wxHtmlLinkInfo() : wxObject()
                 { m_Href = m_Target = wxEmptyString; }
         wxHtmlLinkInfo(const wxString& href, const wxString& target = wxEmptyString) : wxObject()
 {
     public:
         wxHtmlLinkInfo() : wxObject()
                 { m_Href = m_Target = wxEmptyString; }
         wxHtmlLinkInfo(const wxString& href, const wxString& target = wxEmptyString) : wxObject()
-                { m_Href = href; m_Target = target; }    
-        wxHtmlLinkInfo(const wxHtmlLinkInfo& l) 
+                { m_Href = href; m_Target = target; }
+        wxHtmlLinkInfo(const wxHtmlLinkInfo& l)
                 { m_Href = l.m_Href, m_Target = l.m_Target; }
                 { m_Href = l.m_Href, m_Target = l.m_Target; }
-        wxHtmlLinkInfo& operator=(const wxHtmlLinkInfo& l) 
+        wxHtmlLinkInfo& operator=(const wxHtmlLinkInfo& l)
                 { m_Href = l.m_Href, m_Target = l.m_Target; return *this; }
 
         wxString GetHref() const { return m_Href; }
         wxString GetTarget() const { return m_Target; }
                 { m_Href = l.m_Href, m_Target = l.m_Target; return *this; }
 
         wxString GetHref() const { return m_Href; }
         wxString GetTarget() const { return m_Target; }
-        
+
     private:
         wxString m_Href, m_Target;
 };
     private:
         wxString m_Href, m_Target;
 };