V-ART
file.h
Go to the documentation of this file.
1 
5 #ifndef VART_FILE_H
6 #define VART_FILE_H
7 
8 #include <string>
9 
10 namespace VART {
16  class File {
17  public:
18  // PUBLIC STATIC METHODS
27  static std::string GetPathFromString(const std::string& fileName);
28  private:
29  }; // end class declaration
30 } // end namespace
31 #endif
static std::string GetPathFromString(const std::string &fileName)
Definition: file.cpp:9
A File is a system indepentend representation for methods that work with files.
Definition: file.h:16