mirror of
https://github.com/Xahau/xahaud.git
synced 2026-06-04 17:26:39 +00:00
Improve the readability of STBase-derived types
* Increase the visibility of each type's API. * No functional changes.
This commit is contained in:
committed by
Nik Bougalis
parent
72377e7bf2
commit
74e6ed1af3
@@ -88,6 +88,24 @@ STLedgerEntry::getFullText() const
|
||||
return ret;
|
||||
}
|
||||
|
||||
STBase*
|
||||
STLedgerEntry::copy(std::size_t n, void* buf) const
|
||||
{
|
||||
return emplace(n, buf, *this);
|
||||
}
|
||||
|
||||
STBase*
|
||||
STLedgerEntry::move(std::size_t n, void* buf)
|
||||
{
|
||||
return emplace(n, buf, std::move(*this));
|
||||
}
|
||||
|
||||
SerializedTypeID
|
||||
STLedgerEntry::getSType() const
|
||||
{
|
||||
return STI_LEDGERENTRY;
|
||||
}
|
||||
|
||||
std::string
|
||||
STLedgerEntry::getText() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user