Subversion Repositories HomeAutomation

Rev

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

  1. /*
  2.  * Module.h
  3.  *
  4.  *  Created on: May 9, 2009
  5.  *      Author: Mattias Runge
  6.  */
  7.  
  8. #ifndef MODULE_H_
  9. #define MODULE_H_
  10.  
  11. #include <string>
  12.  
  13. namespace atom {
  14. namespace db {
  15.  
  16. using namespace std;
  17.  
  18. class Module
  19. {
  20. public:
  21.     Module(string name);
  22.     virtual ~Module();
  23.  
  24. protected:
  25.     string name;
  26.     unsigned short id;
  27. };
  28.  
  29. }
  30. }
  31.  
  32. #endif /* MODULE_H_ */
  33.