mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-13 16:35:35 +08:00
550b1095de
This reverts commit dff6771da7
.
25 lines
367 B
C++
25 lines
367 B
C++
#pragma once
|
|
#include "acl_cpp/acl_cpp_define.hpp"
|
|
|
|
namespace acl {
|
|
|
|
class ACL_CPP_API hstable
|
|
{
|
|
public:
|
|
hstable(int id, const char* dbn, const char* tbl,
|
|
const char* idx, const char* flds);
|
|
~hstable();
|
|
|
|
private:
|
|
friend class hsclient;
|
|
int id_;
|
|
char* dbn_;
|
|
char* tbl_;
|
|
char* idx_;
|
|
char* flds_;
|
|
int nfld_;
|
|
char** values_;
|
|
};
|
|
|
|
} // namespace acl
|