GridComputing
Job Management in Grid Computing
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
file.h
Go to the documentation of this file.
1 #ifndef FILE_H_
2 #define FILE_H_
3 
4 namespace File
5 {
6  bool Load(const char* fileName, char*& buffer, size_t& size);
7  bool Save(const char* fileName, const char* buffer, size_t size);
8  bool Remove(const char* fileName);
9 }
10 
11 #endif // FILE_H_