summaryrefslogtreecommitdiffstats
path: root/src/storage/table_info.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2015-05-20 14:46:59 +0800
committerPeng Wu <alexepico@gmail.com>2015-05-20 14:46:59 +0800
commit927c7ea42bd759b05518dbbf2a0f89d263cfe437 (patch)
treed2f77665e368cc2037a6dde62e461b4a04ed3f70 /src/storage/table_info.h
parent42c7299f3bbe2191a44aa17fe17829361aede7eb (diff)
downloadlibpinyin-927c7ea42bd759b05518dbbf2a0f89d263cfe437.tar.gz
libpinyin-927c7ea42bd759b05518dbbf2a0f89d263cfe437.tar.xz
libpinyin-927c7ea42bd759b05518dbbf2a0f89d263cfe437.zip
rename SystemTableInfo to SystemTableInfo2
Diffstat (limited to 'src/storage/table_info.h')
-rw-r--r--src/storage/table_info.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/storage/table_info.h b/src/storage/table_info.h
index ff7a781..2f45a50 100644
--- a/src/storage/table_info.h
+++ b/src/storage/table_info.h
@@ -50,7 +50,7 @@ typedef struct {
class UserTableInfo;
-class SystemTableInfo{
+class SystemTableInfo2{
friend class UserTableInfo;
private:
int m_binary_format_version;
@@ -67,9 +67,9 @@ private:
void postfix_tables();
public:
- SystemTableInfo();
+ SystemTableInfo2();
- ~SystemTableInfo();
+ ~SystemTableInfo2();
bool load(const char * filename);
@@ -95,9 +95,9 @@ public:
bool save(const char * filename);
- bool is_conform(const SystemTableInfo * sysinfo);
+ bool is_conform(const SystemTableInfo2 * sysinfo);
- bool make_conform(const SystemTableInfo * sysinfo);
+ bool make_conform(const SystemTableInfo2 * sysinfo);
};
};