Definition at line 963 of file serialize.hpp.
|
| CSizeComputer (int nVersionIn) |
|
void | write (const char *, size_t _nSize) |
|
template<typename T , typename = typename std::enable_if<std::is_integral<T>::value>::type> |
void | writeLE (T) |
|
template<typename T , typename = typename std::enable_if<std::is_integral<T>::value>::type> |
void | writeBE (T, size_t) |
|
void | seek (size_t _nSize) |
| Pretend _nSize bytes are written, without specifying them. More...
|
|
template<typename T > |
CSizeComputer & | operator<< (const T &obj) |
|
size_t | size () const |
|
int | GetVersion () const |
|
◆ CSizeComputer()
altintegration::btc::CSizeComputer::CSizeComputer |
( |
int |
nVersionIn | ) |
|
|
inlineexplicit |
Definition at line 970 of file serialize.hpp.
970: nSize(0), nVersion(nVersionIn) {}
◆ GetVersion()
int altintegration::btc::CSizeComputer::GetVersion |
( |
| ) |
const |
|
inline |
◆ operator<<()
template<typename T >
CSizeComputer & altintegration::btc::CSizeComputer::operator<< |
( |
const T & |
obj | ) |
|
|
inline |
Definition at line 992 of file serialize.hpp.
992 {
993 Serialize(*this, obj);
994 return (*this);
995 }
◆ seek()
void altintegration::btc::CSizeComputer::seek |
( |
size_t |
_nSize | ) |
|
|
inline |
◆ size()
size_t altintegration::btc::CSizeComputer::size |
( |
| ) |
const |
|
inline |
◆ write()
void altintegration::btc::CSizeComputer::write |
( |
const char * |
, |
|
|
size_t |
_nSize |
|
) |
| |
|
inline |
◆ writeBE()
template<typename T , typename = typename std::enable_if<std::is_integral<T>::value>::type>
void altintegration::btc::CSizeComputer::writeBE |
( |
T |
, |
|
|
size_t |
|
|
) |
| |
|
inline |
Definition at line 984 of file serialize.hpp.
984 {
985 this->nSize += sizeof(T);
986 }
◆ writeLE()
template<typename T , typename = typename std::enable_if<std::is_integral<T>::value>::type>
void altintegration::btc::CSizeComputer::writeLE |
( |
T |
| ) |
|
|
inline |
Definition at line 977 of file serialize.hpp.
977 {
978 this->nSize += sizeof(T);
979 }
◆ nSize
size_t altintegration::btc::CSizeComputer::nSize |
|
protected |
◆ nVersion
const int altintegration::btc::CSizeComputer::nVersion |
|
protected |
The documentation for this class was generated from the following file: