diff --git a/Hanko.cpp b/Hanko.cpp new file mode 100644 index 000000000..98b397740 --- /dev/null +++ b/Hanko.cpp @@ -0,0 +1,11 @@ +#include "Hanko.h" + +#include + +using namespace boost; +using namespace std; + +Hanko::Hanko() +{ +} + diff --git a/test.cpp b/test.cpp new file mode 100644 index 000000000..5c0ebc59b --- /dev/null +++ b/test.cpp @@ -0,0 +1,21 @@ +#include +#include "Application.h" +#include "ScopedLock.h" +#include "Serializer.h" +#include "Wallet.h" +#include "Ledger.h" +#include "SHAMap.h" +#include "DeterministicKeys.h" + +int main() +{ + theApp = new Application(); + theApp->run(); + + DetKeySet::unitTest(); + Serializer::TestSerializer(); + SHAMapNode::ClassInit(); + SHAMap::TestSHAMap(); + Ledger::unitTest(); + return 0; +}