Exemplo n.º 1
0
int main(int argc, char** argv)
{
  Duration d;
  
  signal(SIGINT, sigint_handler);

  d.version();
  d.process();
  cout << "\nPress any key to continue..";
  cout.put('\n');
  cin.get();

 return 0;
}