Missing exports.
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Fri, 27 Oct 2006 14:06:46 +0000 (14:06 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Fri, 27 Oct 2006 14:06:46 +0000 (14:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42525 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/tarstrm.h

index 8a5baf667579520fec5d7f062e255ad668aca42d..07fb87ba3fbf883bb2af4a638ba0d283db56d728 100644 (file)
@@ -43,7 +43,7 @@ enum wxTarFormat
 /////////////////////////////////////////////////////////////////////////////
 // wxTarNotifier
 
-class wxTarNotifier
+class WXDLLIMPEXP_BASE wxTarNotifier
 {
 public:
     virtual ~wxTarNotifier() { }
@@ -55,7 +55,7 @@ public:
 /////////////////////////////////////////////////////////////////////////////
 // Tar Entry - hold the meta data for a file in the tar
 
-class wxTarEntry : public wxArchiveEntry
+class WXDLLIMPEXP_BASE wxTarEntry : public wxArchiveEntry
 {
 public:
     wxTarEntry(const wxString& name = wxEmptyString,
@@ -148,7 +148,7 @@ private:
 /////////////////////////////////////////////////////////////////////////////
 // wxTarInputStream
 
-class wxTarInputStream : public wxArchiveInputStream
+class WXDLLIMPEXP_BASE wxTarInputStream : public wxArchiveInputStream
 {
 public:
     typedef wxTarEntry entry_type;
@@ -203,7 +203,7 @@ private:
 /////////////////////////////////////////////////////////////////////////////
 // wxTarOutputStream
 
-class wxTarOutputStream : public wxArchiveOutputStream
+class WXDLLIMPEXP_BASE wxTarOutputStream : public wxArchiveOutputStream
 {
 public:
     wxTarOutputStream(wxOutputStream& stream,
@@ -295,7 +295,7 @@ typedef wxArchiveIterator<wxTarInputStream,
 /////////////////////////////////////////////////////////////////////////////
 // wxTarClassFactory
 
-class wxTarClassFactory : public wxArchiveClassFactory
+class WXDLLIMPEXP_BASE wxTarClassFactory : public wxArchiveClassFactory
 {
 public:
     typedef wxTarEntry        entry_type;