mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 21:09:19 +08:00
9697f95b8f
This reverts commit 15d999759e
.
19 lines
210 B
C++
19 lines
210 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:
|
|
};
|