Subversion Repositories HomeAutomation

Rev

Rev 1328 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /*
  2.  * types.h
  3.  *
  4.  *  Created on: Jul 22, 2009
  5.  *      Author: Mattias Runge
  6.  */
  7.  
  8. #ifndef TYPES_H_
  9. #define TYPES_H_
  10.  
  11. #include <vector>
  12. #include <string>
  13.  
  14. namespace atom {
  15.  
  16. typedef std::vector<unsigned char> ByteList;
  17. typedef std::vector<std::string> StringList;
  18. typedef std::vector<bool> BitList;
  19.  
  20. } // namespace atom
  21.  
  22. #endif /* TYPES_H_ */
  23.