Added common and test directories

This commit is contained in:
Kayne Ruse
2013-06-09 17:06:32 +10:00
parent 78326a3bbd
commit 0a48131de4
10 changed files with 193 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
//#include "packet_type.hpp"
#include "service_locator.hpp"
#include "foobar.hpp"
#include <iostream>
using namespace std;
int main() {
ServiceLocator<int>::Set(new int(42));
cout << FooBar() << endl;
ServiceLocator<int>::Set(nullptr);
return 0;
}