This commit is contained in:
jed
2011-10-14 11:39:06 -07:00
commit a8e8613475
112 changed files with 25368 additions and 0 deletions

16
UniqueNodeList.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef __UNIQUE_NODE_LIST__
#define __UNIQUE_NODE_LIST__
#include "newcoin.pb.h"
class UniqueNodeList
{
public:
void load();
void save();
bool findHanko(const std::string& hanko);
};
#endif