Subversion Repositories HomeAutomation

Rev

Blame | Last modification | View Log | SVN | RSS feed

  1. /*
  2.  * file.h
  3.  *
  4.  *  Created on: Aug 04, 2009
  5.  *      Author: Mattias Runge
  6.  */
  7.  
  8. #ifndef FILE_H_
  9. #define FILE_H_
  10.  
  11. #include <fstream>
  12. #include <string>
  13.  
  14. namespace atom {
  15. namespace file {
  16.  
  17. using namespace std;
  18.  
  19. string get_contents(string filename);
  20. bool exists(string filename);
  21.  
  22. }
  23. }
  24.  
  25. #endif // FILE_H_
  26.