mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
16 lines
199 B
C++
16 lines
199 B
C++
#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 |