A templated class for holding compound tokens. More...
Public Member Functions | |
TypeName ("Compound<T>") | |
Declare type-name, virtual type (with debug switch) More... | |
Compound (const T &val) | |
Copy construct. More... | |
Compound (T &&val) | |
Move construct. More... | |
Compound (Istream &is) | |
Read construct from Istream. More... | |
virtual label | size () const |
The size of the underlying content. More... | |
virtual void | write (Ostream &os) const |
Redirect write to underlying content. More... | |
![]() | |
TypeName ("compound") | |
Declare type-name, virtual type (with debug switch) More... | |
declareRunTimeSelectionTable (autoPtr, compound, Istream,(Istream &is),(is)) | |
Declare run-time constructor selection table. More... | |
constexpr | compound () noexcept |
Default construct. More... | |
virtual | ~compound () noexcept=default |
Destructor. More... | |
bool | moved () const noexcept |
Get compound transferred status. More... | |
void | moved (bool b) noexcept |
Set compound transferred status. More... | |
![]() | |
constexpr | refCount () noexcept |
Default construct, initializing count to 0. More... | |
int | count () const noexcept |
Return the current reference count. More... | |
bool | unique () const noexcept |
Return true if the reference count is zero. More... | |
void | operator++ () noexcept |
Increment the reference count. More... | |
void | operator++ (int) noexcept |
Increment the reference count. More... | |
void | operator-- () noexcept |
Decrement the reference count. More... | |
void | operator-- (int) noexcept |
Decrement the reference count. More... | |
Additional Inherited Members | |
![]() | |
static autoPtr< compound > | New (const word &type, Istream &is) |
Construct compound from Istream. More... | |
static bool | isCompound (const word &name) |
Test if name is a known (registered) compound type. More... | |
A templated class for holding compound tokens.
TypeName | ( | "Compound<T>" | ) |
Declare type-name, virtual type (with debug switch)
|
inlinevirtual |
The size of the underlying content.
Implements token::compound.
|
inlinevirtual |
Redirect write to underlying content.
Implements token::compound.