Yurttas/PL/OOL/Cplusplus/F/04/02/03/01/Student.h

 1/*
 2   Copyright(C) 2002
 3   All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
 4
 5   Permission to use, copy, modify, and distribute this
 6   software and its documentation for EDUCATIONAL purposes
 7   and without fee is hereby granted provided that this
 8   copyright notice appears in all copies.
 9  
10   date   : June 1, 2002.
11   authorĀ : Salih Yurttas.
12
13   Student.h
14*/
15
16#ifndef STUDENT_H
17#define STUDENT_H
18
19#include <iostream>
20
21using namespace std;
22
23#include "Person.h"
24#include "Courses.h"
25
26class Student : public Person,
27                public Courses {
28public:
29  Student(const int n=0);
30
31  Student(const Student&);
32
33  friend ostream& operator<<(ostream&,
34                             const Student&);
35};
36#endif