Example #1
0
GALGAS_uint::GALGAS_uint (const bool inValid, const uint32_t inValue) :
mIsValid (inValid),
mUIntValue (inValue) {
  if (traceIsEnabled ()) {
    appendTrace ("uint", inValid, cStringWithUnsigned (inValue)) ;
  }
}
Example #2
0
GALGAS_double::GALGAS_double (const double inValue) :
mIsValid (true),
mDoubleValue (inValue) {
  if (traceIsEnabled ()) {
    appendTrace ("double", true, cStringWithDouble (inValue)) ;
  }
}
GALGAS_uint_36__34_::GALGAS_uint_36__34_ (const uint64_t inValue) :
mIsValid (true),
mUInt64Value (inValue) {
  if (traceIsEnabled ()) {
    appendTrace ("uint64", true, cStringWithUnsigned (inValue)) ;
  }
}