#include "precompiled.h" # include "sr_time.h" # include "sr_string.h" # include "sr_output.h" //======================= SrTime ===================================== SrTime::SrTime () { _h = _m = 0; _s = 0; } void SrTime::set ( int h, int m, float s ) { _h = h; _m = m; _s = s; //sr_out<=60.0f ) { m = (int) (_s/60.0f); _s -= (float) (m*60); _m += m; } //sr_out<=60 ) { h = _m/60; _m -= h*60; _h += h; } //sr_out<