26 lines
363 B
C
26 lines
363 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
using namespace std;
|
||
|
|
||
|
class InfoText
|
||
|
{
|
||
|
public:
|
||
|
InfoText();
|
||
|
~InfoText();
|
||
|
static void Generate(vector<string>& ins);
|
||
|
|
||
|
public:
|
||
|
int m_Id;
|
||
|
string m_TextCode;
|
||
|
string m_DefaultText;
|
||
|
|
||
|
public:
|
||
|
static string TABLE_NAME;
|
||
|
static string FIELD_ID;
|
||
|
static string FIELD_TEXT_CODE;
|
||
|
static string FIELD_DEFAULT_TEXT;
|
||
|
|
||
|
};
|
||
|
|