serverContext and beacon emitter impl

This commit is contained in:
Gasper Jansa
2011-02-04 16:22:28 +01:00
parent d81fd2309b
commit de8b632381
5 changed files with 61 additions and 68 deletions

View File

@@ -11,19 +11,21 @@ using namespace std;
void testServerContext()
{
ServerContextImpl ctx;
ServerContextImpl ctx;
ctx.initialize(NULL);
ctx.initialize(NULL);
ctx.printInfo();
ctx.printInfo();
ctx.run(1);
ctx.run(1);
ctx.destroy();
ctx.destroy();
}
int main(int argc, char *argv[])
{
testServerContext();
cout << "Done" << endl;
return (0);
}