16 lines
232 B
C
16 lines
232 B
C
|
#pragma once
|
||
|
#include "BaseDao.h"
|
||
|
#include "../bean/InfoText.h"
|
||
|
|
||
|
class InfoTextDao :public BaseDao
|
||
|
{
|
||
|
public:
|
||
|
InfoTextDao(SQLite::Database* pdb);
|
||
|
~InfoTextDao();
|
||
|
void CreateTable();
|
||
|
|
||
|
void Find(map<string, string>& textmap);
|
||
|
|
||
|
};
|
||
|
|