SNAP Library 2.0, User Reference  2013-05-13 16:33:57
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
TExeTm Class Reference

#include <tm.h>

List of all members.

Public Member Functions

 TExeTm ()
 TExeTm (const TExeTm &Tm)
TExeTmoperator= (const TExeTm &Tm)
void Tick ()
int GetTime () const
double GetSecs () const
int GetSecInt ()
const char * GetStr () const
TStr GetStr2 () const
const char * GetTmStr () const

Static Public Member Functions

static char * GetCurTm ()

Private Attributes

int LastTick

Detailed Description

Definition at line 354 of file tm.h.


Constructor & Destructor Documentation

TExeTm::TExeTm ( ) [inline]

Definition at line 358 of file tm.h.

: LastTick(0) { Tick(); }
TExeTm::TExeTm ( const TExeTm Tm) [inline]

Definition at line 359 of file tm.h.

: LastTick(Tm.LastTick) { }

Member Function Documentation

static char* TExeTm::GetCurTm ( ) [inline, static]

Definition at line 373 of file tm.h.

{ static TStr TmStr; TmStr=TSecTm::GetCurTm().GetTmStr(); return TmStr.CStr(); }
int TExeTm::GetSecInt ( ) [inline]

Definition at line 366 of file tm.h.

{ return TFlt::Round(GetSecs()); }
double TExeTm::GetSecs ( ) const [inline]

Definition at line 365 of file tm.h.

{return double(clock()-LastTick)/double(CLOCKS_PER_SEC);}
const char* TExeTm::GetStr ( ) const [inline]

Definition at line 367 of file tm.h.

{return GetTmStr();}
TStr TExeTm::GetStr2 ( ) const [inline]

Definition at line 368 of file tm.h.

{return GetTmStr();}
int TExeTm::GetTime ( ) const [inline]

Definition at line 364 of file tm.h.

{return int(clock()-LastTick);}
const char* TExeTm::GetTmStr ( ) const [inline]

Definition at line 369 of file tm.h.

                               { static char TmStr[32];
    if (GetSecs() < 60) { sprintf(TmStr, "%.2fs", GetSecs()); }
    else if (GetSecs() < 3600) { sprintf(TmStr, "%02dm%02ds", int(GetSecs())/60, int(GetSecs())%60); }
    else { sprintf(TmStr, "%02dh%02dm", int(GetSecs())/3600, (int(GetSecs())%3600)/60); }  return TmStr; }
TExeTm& TExeTm::operator= ( const TExeTm Tm) [inline]

Definition at line 360 of file tm.h.

                                     {
    LastTick=Tm.LastTick; return *this;}
void TExeTm::Tick ( ) [inline]

Definition at line 363 of file tm.h.

{LastTick=(int)clock();}

Member Data Documentation

int TExeTm::LastTick [private]

Definition at line 356 of file tm.h.


The documentation for this class was generated from the following file: