Constructors

Synopses

Declared in <txgraph.h>

Construct an empty Ref. It can be initialized through TxGraph::AddTransaction.

constexpr
Ref() noexcept = default;

Copy construction is disabled: a TxGraph entry can have at most one Ref pointing to it.

Ref(Ref const& other) = delete;

Move‐construct a Ref, transferring ownership of the referenced transaction.

Ref(Ref&& other) noexcept;

Parameters

Name

Description

other

The Ref being copied from.

Created with MrDocs