Created the basic program flow

This commit is contained in:
Kayne Ruse
2013-05-11 23:51:02 +10:00
parent 4671afe900
commit 6a19d0a312
16 changed files with 470 additions and 17 deletions
+10 -2
View File
@@ -1,15 +1,23 @@
#include "test_systems.hpp"
#include <iostream>
using namespace std;
//-------------------------
//Public access members
//-------------------------
TestSystems::TestSystems() {
//
#ifdef DEBUG
cout << "entering TestSystems" << endl;
#endif
}
TestSystems::~TestSystems() {
//
#ifdef DEBUG
cout << "leaving TestSystems" << endl;
#endif
}
//-------------------------