Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F10615239
coincontrol.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
coincontrol.h
View Options
// Copyright (c) 2011-2013 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 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
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sat, Nov 23, 10:02 (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4513760
Default Alt Text
coincontrol.h (1 KB)
Attached To
rSTAGING Bitcoin ABC staging
Event Timeline
Log In to Comment