]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/OS/FileSystem.h
Moved to version 1.0
[cpPlugins.git] / lib / cpPlugins / OS / FileSystem.h
diff --git a/lib/cpPlugins/OS/FileSystem.h b/lib/cpPlugins/OS/FileSystem.h
deleted file mode 100644 (file)
index 4c59413..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-#ifndef __cpPlugins__OS__FileSystem__h__
-#define __cpPlugins__OS__FileSystem__h__
-
-#include <cpPlugins/Config.h>
-#include <set>
-#include <string>
-
-namespace cpPlugins
-{
-  namespace OS
-  {
-    /**
-     */
-    class cpPlugins_EXPORT FileSystem
-    {
-    public:
-      typedef FileSystem Self;
-
-    public:
-      /**
-       */
-      static std::string CanonicalPath( const std::string& path );
-
-      /**
-       */
-      static std::pair< std::string, std::string > SplitPath(
-        const std::string& path
-        );
-
-      /**
-       */
-      static std::set< std::string > LoadDirContents(
-        const std::string& path, bool recursive = false,
-        const std::string& pattern = ""
-        );
-
-      /**
-       */
-      static int GlobMatch( const char* target, const char* pattern );
-
-      /**
-       */
-      static bool Glob( const std::string& line, const std::string& pattern );
-
-      /**
-       */
-      static bool Read( std::string& buffer, const std::string& fname );
-
-      /**
-       */
-      static bool Write( const std::string& buffer, const std::string& fname );
-    };
-
-  } // ecapseman
-
-} // ecapseman
-
-#endif // __cpPlugins__OS__FileSystem__h__
-
-// eof - $RCSfile$