21 lines
297 B
C
21 lines
297 B
C
|
#pragma once
|
||
|
#include "BaseDao.h"
|
||
|
#include <map>
|
||
|
#include "../bean/IOVersion.h"
|
||
|
#include <vector>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class IOVersionDao :public BaseDao
|
||
|
{
|
||
|
public:
|
||
|
IOVersionDao(SQLite::Database* pdb);
|
||
|
~IOVersionDao();
|
||
|
void CreateTable();
|
||
|
|
||
|
void Find(map<int,vector<IOVersion*>*>& cfg);
|
||
|
};
|
||
|
|
||
|
|
||
|
|