Missing from repo

This commit is contained in:
JoelKatz
2011-12-13 18:52:08 -08:00
parent 4b5bc85a0d
commit 78fedc05b4
2 changed files with 32 additions and 0 deletions

11
Hanko.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "Hanko.h"
#include <boost/foreach.hpp>
using namespace boost;
using namespace std;
Hanko::Hanko()
{
}

21
test.cpp Normal file
View File

@@ -0,0 +1,21 @@
#include <string>
#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;
}