home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
APDL Public Domain 1
/
APDL_PD1A.iso
/
program
/
c
/
c_plus_tut
/
hpp
/
person
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-04-05
|
265 b
|
14 lines
// Chapter 11 - Program 1
#ifndef PERSONHPP
#define PERSONHPP
class person {
protected: // Make these variables available to the subclasses
char name[25];
int salary;
public:
virtual void display(void);
};
#endif