#ifndef YFILE_H #define YFILE_H #include #include using namespace yngn::YException; namespace yngn { namespace util { class YFile { private: YFile() {} public: static TFile *yfile; static TFile* Open(const char* url, const char* options = "", bool copy = false, const char* path = "./.") throw (YNotExistingFileException, YSystemCommandException); }; } } #endif /* YFILE_H */