#if defined(_MSC_VER) || defined(__CYGWIN__) // Cygwin/Microsoft
#include "TimeTools.H"
#else
#endif
#include <iostream>
int main(
int argc,
char *argv[]){
cout<<"t1 = "<<t1<<endl;
cout<<"t2 = "<<t2<<endl;
cout<<"t3 = "<<t3<<endl;
cout<<"t2-t3 = "<<(t2-t3)<<endl;
cout<<"t1-=t3 = "<<(t1-=t3)<<endl;
cout<<
"t1 secs : "<<t1.
getSecs()<<endl;
cout<<"t1 usecs : "<<t1.getUSecs()<<endl;
cout<<"t2+t3 = "<<(t2+t3)<<endl;
cout<<"t1+=t3 = "<<(t1+=t3)<<endl;
t1.getTime();
cout<<"current time = "<<t1<<endl;
return 0;
}