acl/lib_acl_cpp/samples/check_trigger/db_store.h
zsxxsz 4a219509b9 acl.3.0.14 release
some new features, and some bug fixed
2013-12-07 20:31:59 +08:00

19 lines
192 B
C++

#pragma once
class http_thread;
class db_store
{
public:
db_store();
~db_store();
// 更新数据表
bool db_update(const http_thread& http);
// 创建数据表
bool db_create();
private:
};