GALGAS_uint GALGAS_timer::getter_msFromStart (UNUSED_LOCATION_ARGS) const {
    GALGAS_uint result ;
    if (isValid ()) {
        result = GALGAS_uint (mTimer.msFromStart ()) ;
    }
    return result ;
}
GALGAS_uint GALGAS_uint::constructor_warningCount (UNUSED_LOCATION_ARGS) {
  return GALGAS_uint ((uint32_t) totalWarningCount ()) ;
}
GALGAS_uint GALGAS_uint::constructor_errorCount (UNUSED_LOCATION_ARGS) {
  return GALGAS_uint ((uint32_t) totalErrorCount ()) ;
}
GALGAS_uint GALGAS_uint::constructor_max (UNUSED_LOCATION_ARGS) {
  return GALGAS_uint (UINT32_MAX) ;
}
GALGAS_uint GALGAS_uint::constructor_default (UNUSED_LOCATION_ARGS) {
  return GALGAS_uint (0) ;
}
Exemple #6
0
GALGAS_uint GALGAS_char::getter_uint (UNUSED_LOCATION_ARGS) const {
  return GALGAS_uint (UNICODE_VALUE (mCharValue)) ;
}