Rev 1328 |
Blame |
Compare with Previous |
Last modification |
View Log
| SVN
| RSS feed
/*
* types.h
*
* Created on: Jul 22, 2009
* Author: Mattias Runge
*/
#ifndef TYPES_H_
#define TYPES_H_
#include <vector>
#include <string>
namespace atom {
typedef std::vector<unsigned char> ByteList;
typedef std::vector<std::string> StringList;
typedef std::vector<bool> BitList;
} // namespace atom
#endif /* TYPES_H_ */