Source of TestStuff20140924.cpp


  1: //TestStuff20140924.cpp

  2: //Wednesday, September 24, 2014

  3: 
  4: #include <iostream>

  5: #include <fstream>

  6: #include <iomanip>

  7: #include <string> 

  8: #include <cstdlib>

  9: #include <vector>

 10: using namespace std;
 11: 
 12: #include "utilities.h"

 13: using Scobey::Pause;
 14: 
 15: #include "Person.h" //must also link to Person.cpp

 16: 
 17: int main(int argc, char* argv[])
 18: {
 19:     Person person;
 20:     string name("Bob");
 21:     person.setName(name);
 22:     person.setAge(21);
 23:     person.show();
 24:     cout << person.getName() << endl;
 25:     person.show();
 26:     cout << name << endl;
 27: }
 28: