2014-12-06 20:41:53 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
|
// Copyright (c) 2009-2012 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef SRC_MASTERNODECONFIG_H_
|
|
|
|
#define SRC_MASTERNODECONFIG_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <boost/filesystem/fstream.hpp>
|
|
|
|
|
|
|
|
class CMasternodeConfig;
|
|
|
|
extern CMasternodeConfig masternodeConfig;
|
|
|
|
|
|
|
|
class CMasternodeConfig
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
class CMasternodeEntry {
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string alias;
|
|
|
|
std::string ip;
|
|
|
|
std::string privKey;
|
|
|
|
std::string txHash;
|
|
|
|
std::string outputIndex;
|
2015-03-16 20:01:11 +01:00
|
|
|
std::string donationAddress;
|
|
|
|
std::string donationPercentage;
|
2014-12-06 20:41:53 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
CMasternodeEntry(std::string alias, std::string ip, std::string privKey, std::string txHash, std::string outputIndex) {
|
|
|
|
this->alias = alias;
|
|
|
|
this->ip = ip;
|
|
|
|
this->privKey = privKey;
|
|
|
|
this->txHash = txHash;
|
|
|
|
this->outputIndex = outputIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& getAlias() const {
|
|
|
|
return alias;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setAlias(const std::string& alias) {
|
|
|
|
this->alias = alias;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& getOutputIndex() const {
|
|
|
|
return outputIndex;
|
|
|
|
}
|
|
|
|
|
2015-03-16 20:01:11 +01:00
|
|
|
const std::string& getDonationAddress() const {
|
|
|
|
return donationAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& getDonationPercentage() const {
|
|
|
|
return donationPercentage;
|
|
|
|
}
|
|
|
|
|
2014-12-06 20:41:53 +01:00
|
|
|
void setOutputIndex(const std::string& outputIndex) {
|
|
|
|
this->outputIndex = outputIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& getPrivKey() const {
|
|
|
|
return privKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setPrivKey(const std::string& privKey) {
|
|
|
|
this->privKey = privKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& getTxHash() const {
|
|
|
|
return txHash;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setTxHash(const std::string& txHash) {
|
|
|
|
this->txHash = txHash;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& getIp() const {
|
|
|
|
return ip;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setIp(const std::string& ip) {
|
|
|
|
this->ip = ip;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
CMasternodeConfig() {
|
|
|
|
entries = std::vector<CMasternodeEntry>();
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear();
|
2015-01-11 18:28:28 +01:00
|
|
|
bool read(std::string& strErr);
|
2014-12-06 20:41:53 +01:00
|
|
|
void add(std::string alias, std::string ip, std::string privKey, std::string txHash, std::string outputIndex);
|
|
|
|
|
|
|
|
std::vector<CMasternodeEntry>& getEntries() {
|
|
|
|
return entries;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<CMasternodeEntry> entries;
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* SRC_MASTERNODECONFIG_H_ */
|
|
|
|
|