TxGraph::Ref::Ref

Constructors

Synopses

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...

Parameters

NameDescription
otherThe Ref being copied from.