#include 
#include 
#include 
using namespace std;

//Specimen Paper A        Lab Period Thursday 12 Feb 2009
//==================
/*
A business keeps the records of its employee.
employee file ( employee id A99999, N=calariedame 20(A), Tel 7(9), 
                type H=hourly S=salaried)
Write a function CREATEEMPLOYEE to create the file "EMPLOYEE.DAT"
Each employee is in a DEPARTMENT (6 chars) and there are at most 20 employees.
Format of file
--------------





--------------
submit to tpjc_sg@yahoo.com
*/

class Employee{
private:

public:

  void show();


};

void main(){
  Employee x;
  x.show();

} 
void Employee::show(){
  cout << "show function" << endl;
}

    Source: geocities.com/tpjc_sg