Source of TestStuff41.cpp


  1: //TestStuff41.cpp

  2: //Tuesday, Mar 18, 2014

  3: 
  4: #include <iostream>

  5: #include <string>

  6: #include <iomanip>

  7: #include <cstdlib>

  8: using namespace std;
  9: 
 10: #include "time.h"

 11: 
 12: int main(int argc, char* argv[])
 13: {
 14:         Time t(3, 15, 30);
 15:         cout << t << endl;
 16: }
 17: