Subversion Repositories HomeAutomation

Rev

Go to most recent revision | Blame | Last modification | View Log | SVN | RSS feed

  1. /*
  2.  * Database.h
  3.  *
  4.  *  Created on: Jul 23, 2009
  5.  *      Author: Mattias Runge
  6.  */
  7.  
  8. #ifndef DATABASE_H_
  9. #define DATABASE_H_
  10.  
  11. namespace atom {
  12. namespace db {
  13.  
  14. class Database
  15. {
  16. public:
  17.     Database();
  18.     virtual
  19.     ~Database();
  20. };
  21.  
  22. }
  23. }
  24.  
  25. #endif /* DATABASE_H_ */
  26.