Coin Control Features
This commit is contained in:
committed by
Wladimir J. van der Laan
parent
8dfd8c62dc
commit
6a86c24db1
59
src/coincontrol.h
Normal file
59
src/coincontrol.h
Normal file
@@ -0,0 +1,59 @@
|
||||
#ifndef COINCONTROL_H
|
||||
#define COINCONTROL_H
|
||||
|
||||
#include "core.h"
|
||||
|
||||
/** Coin Control Features. */
|
||||
class CCoinControl
|
||||
{
|
||||
public:
|
||||
CTxDestination destChange;
|
||||
|
||||
CCoinControl()
|
||||
{
|
||||
SetNull();
|
||||
}
|
||||
|
||||
void SetNull()
|
||||
{
|
||||
destChange = CNoDestination();
|
||||
setSelected.clear();
|
||||
}
|
||||
|
||||
bool HasSelected() const
|
||||
{
|
||||
return (setSelected.size() > 0);
|
||||
}
|
||||
|
||||
bool IsSelected(const uint256& hash, unsigned int n) const
|
||||
{
|
||||
COutPoint outpt(hash, n);
|
||||
return (setSelected.count(outpt) > 0);
|
||||
}
|
||||
|
||||
void Select(COutPoint& output)
|
||||
{
|
||||
setSelected.insert(output);
|
||||
}
|
||||
|
||||
void UnSelect(COutPoint& output)
|
||||
{
|
||||
setSelected.erase(output);
|
||||
}
|
||||
|
||||
void UnSelectAll()
|
||||
{
|
||||
setSelected.clear();
|
||||
}
|
||||
|
||||
void ListSelected(std::vector<COutPoint>& vOutpoints)
|
||||
{
|
||||
vOutpoints.assign(setSelected.begin(), setSelected.end());
|
||||
}
|
||||
|
||||
private:
|
||||
std::set<COutPoint> setSelected;
|
||||
|
||||
};
|
||||
|
||||
#endif // COINCONTROL_H
|
||||
Reference in New Issue
Block a user