Пример #1
0
GALGAS_uint::GALGAS_uint (const bool inValid, const uint32_t inValue) :
mIsValid (inValid),
mUIntValue (inValue) {
  if (traceIsEnabled ()) {
    appendTrace ("uint", inValid, cStringWithUnsigned (inValue)) ;
  }
}
Пример #2
0
GALGAS_uint_36__34_::GALGAS_uint_36__34_ (const uint64_t inValue) :
mIsValid (true),
mUInt64Value (inValue) {
  if (traceIsEnabled ()) {
    appendTrace ("uint64", true, cStringWithUnsigned (inValue)) ;
  }
}