Constructors
Declared in <txgraph.h>
Construct an empty Ref. It can be initialized through TxGraph::AddTransaction.
constexpr
Ref() noexcept = default;
» more...
Copy construction is disabled: a TxGraph entry can have at most one Ref pointing to it.
Ref(Ref const& other) = delete;
» more...
Move-construct a Ref, transferring ownership of the referenced transaction.
Ref(Ref&& other) noexcept;
» more...
| Name | Description |
|---|---|
| other | The Ref being copied from. |