topical media & game development

talk show tell print

professional-program-01-EmployeeDB-EmployeeTest.c

? / professional-program-01-EmployeeDB-EmployeeTest.c


  // EmployeeTest.cpp
  
  include <iostream>
  
  include <Employee.h>
  
  using namespace std;
  using namespace Records;
  
  /*
  int main (int argc, char** argv)
  {
    cout << "Testing the Employee class." << endl;
  
    Employee emp;
  
    emp.setFirstName("Marni");
    emp.setLastName("Kleper");
    emp.setEmployeeNumber(71);
    emp.setSalary(50000);
    emp.promote();
    emp.promote(50);
    emp.hire();
    emp.display();
  }
  */
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.