]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/fs_inet.h
typo
[wxWidgets.git] / include / wx / fs_inet.h
index 695bdb425f906bfb900e62e115d51de5c1a0ff42..16ef29757970d5a6b92388b4bcd773ce4454cd99 100644 (file)
@@ -8,7 +8,7 @@
 
 /*
 
-REMARKS : 
+REMARKS :
 
 This FS creates local cache (in /tmp directory). The cache is freed
 on program exit.
@@ -18,30 +18,28 @@ limitation)
 
 
 */
+#ifndef _WX_FS_INET_H_
+#define _WX_FS_INET_H_
 
-#ifdef __GNUG__
-#pragma implementation
+#if defined(__GNUG__) && !defined(__APPLE__)
+#pragma interface "fs_inet.h"
 #endif
 
-#include <wx/wxprec.h>
+#include "wx/defs.h"
 
-#ifdef __BORDLANDC__
-#pragma hdrstop
-#endif
+#if wxUSE_FILESYSTEM && wxUSE_FS_INET && wxUSE_STREAMS && wxUSE_SOCKETS
 
 #ifndef WXPRECOMP
-#include <wx/wx.h>
+    #include "wx/hash.h"
 #endif
 
-#include <wx/filesys.h>
-
-
+#include "wx/filesys.h"
 
 //--------------------------------------------------------------------------------
 // wxInternetFSHandler
 //--------------------------------------------------------------------------------
 
-class wxInternetFSHandler : public wxFileSystemHandler
+class WXDLLEXPORT wxInternetFSHandler : public wxFileSystemHandler
 {
     private:
         wxHashTable m_Cache;
@@ -52,4 +50,8 @@ class wxInternetFSHandler : public wxFileSystemHandler
         ~wxInternetFSHandler();
 };
 
+#endif
+  // wxUSE_FILESYSTEM && wxUSE_FS_INET && wxUSE_STREAMS && wxUSE_SOCKETS
+
+#endif // _WX_FS_INET_H_