11 lines
123 B
C++
11 lines
123 B
C++
|
|
#ifndef TYPES_H
|
|
#define TYPES_H
|
|
|
|
#include <string>
|
|
|
|
typedef std::basic_string<unsigned char> ustring;
|
|
|
|
#endif // TYPES_H
|
|
|