18 lines
334 B
C++
18 lines
334 B
C++
#pragma once
|
|
#include "BaseDao.h"
|
|
#include "../bean/FixPointCfg.h"
|
|
|
|
class FixPointDao :public BaseDao
|
|
{
|
|
public:
|
|
FixPointDao(SQLite::Database* pdb);
|
|
~FixPointDao();
|
|
void CreateTable();
|
|
|
|
void Find(int cno,FixPointWrapper& fpw);
|
|
void Save(int cno,FixPointWrapper& fpw);
|
|
bool Add(FixPointCfg* cfg);
|
|
bool Del(FixPointCfg* cfg);
|
|
};
|
|
|