- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
Latest commit
21 lines (20 loc) · 592 Bytes
/
Copy pathmain.cpp
File metadata and controls
21 lines (20 loc) · 592 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include<iostream>
#include<string>
#include<stdlib.h>
#include"table.h"
#include"CLThread.h"
#include"CLExeFuncInsert.h"
#include"CLExeFuncSearch.h"
intmain()
{
//测试
table* m_table=table::GetTable();
//m_table->InsertRecord();
//m_table->SearchRecord(1,1000,1);
m_table->SearchRecord(1,1000,1);
//CLExecutiveFunctionProvider* inserter=new CLExecutiveFunctionInsert();
//CLExecutiveFunctionProvider* Search=new CLExecutiveFunctionSearch(10,1000,8);
//CLExecutive *pThread=new CLThread(Search);
//pThread->Run();
//pThread->WaitForDeath();
}