This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/test/main.cpp
T
2013-06-09 17:06:32 +10:00

13 lines
253 B
C++

//#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;
}