Diffstat (limited to 'advtrains_train_track/models')
0 files changed, 0 insertions, 0 deletions
com">(at your option) any later version.
This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU Lesser General Public License for more details.You should have received a copy of the GNU Lesser General Public License alongwith this program; if not, write to the Free Software Foundation, Inc.,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.*/#ifndef UTIL_TIMETAKER_HEADER#define UTIL_TIMETAKER_HEADER#include"../irrlichttypes.h"#include"../gettime.h"/* TimeTaker*/class TimeTaker
{public:TimeTaker(const char*name, u32 *result=NULL,
TimePrecision=PRECISION_MILLI);~TimeTaker(){stop();}
u32 stop(bool quiet=false);
u32 getTimerTime();private:const char*m_name;
u32 m_time1;bool m_running;
TimePrecision m_precision;
u32 *m_result;};#endif