![]() |
GDBMS 1.0
|
00001 class file_semaphore{ 00007 public: 00009 00015 file_semaphore(char *path_to_file); 00016 ~file_semaphore(); 00018 00023 void getResource(); 00025 00030 void freeResource(); 00031 00032 private: 00033 int resid; 00034 std::string filepath; 00035 FILE *fp1; 00036 protected: 00037 00038 00039 };