Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
in_kb_data.h
Go to the documentation of this file.
1 #ifndef _IN_KB_DATA_H_
2 #define _IN_KB_DATA_H_
3 #include <string>
4 class KBData{
5 public:
6  std::string data;
7  KBData(){}
8  KBData(const std::string &s){this->data=s;}
9 };
10 #endif