Click here to Skip to main content
15,906,625 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionMultiple inheritance or what? Pin
SriKrishna25-Oct-02 13:37
SriKrishna25-Oct-02 13:37 
AnswerRe: Multiple inheritance or what? Pin
Paul M Watt25-Oct-02 21:23
mentorPaul M Watt25-Oct-02 21:23 
AnswerRe: Multiple inheritance or what? Pin
Chris Richardson26-Oct-02 7:21
Chris Richardson26-Oct-02 7:21 
GeneralRe: Multiple inheritance or what? Pin
SriKrishna26-Oct-02 8:41
SriKrishna26-Oct-02 8:41 
AnswerRe: Multiple inheritance or what? Pin
SriKrishna26-Oct-02 8:46
SriKrishna26-Oct-02 8:46 
GeneralRe: Multiple inheritance or what? Pin
Chris Richardson26-Oct-02 13:42
Chris Richardson26-Oct-02 13:42 
GeneralRe: Multiple inheritance or what? Pin
SriKrishna26-Oct-02 15:06
SriKrishna26-Oct-02 15:06 
QuestionMultiple inheritance or what? Pin
SriKrishna25-Oct-02 13:36
SriKrishna25-Oct-02 13:36 
I have a little problem here maybe someone can help me please. I have to provide a Programmer class Cry | :(( which is a sub class of both Person class and the Staff class. I have done simple inheritance but I don’t know much about multiple inheritance. Can anyone please help me with initial part of the program. Here are the Person.h and Staff.h file:

Person.h

#ifndef __PERSON_H
#define__PERSON_H

class Person{
Protected:
char* name;
int age;

Public:
Person(char*, int);
Person(const Person&);
Person& operator=(const Person&);
~Person();
char* getName();
int getAge();
};
#endif

&&&&&&&&&&&&&

Staff.h

#ifndef __STAFF_H
#define__STAFF_H
class Staff{
Protected :
Char* post;

Public:
Staff(char*);
Staff(const Staff&);
Staffoperator=(const Staff&);
`Staff();
char* getPost();
};
#endif

GeneralOverloaded and assignment operators Pin
mcgraw25-Oct-02 13:27
mcgraw25-Oct-02 13:27 
GeneralIPicture object duplication... Pin
nebbish25-Oct-02 12:43
nebbish25-Oct-02 12:43 
GeneralRe: IPicture object duplication... Pin
Michael Dunn25-Oct-02 14:51
sitebuilderMichael Dunn25-Oct-02 14:51 
GeneralRe: IPicture object duplication... Pin
nebbish25-Oct-02 15:05
nebbish25-Oct-02 15:05 
GeneralSDK vs MFC ownerdraw Pin
alex.barylski25-Oct-02 12:33
alex.barylski25-Oct-02 12:33 
GeneralRe: SDK vs MFC ownerdraw Pin
Ravi Bhavnani25-Oct-02 12:46
professionalRavi Bhavnani25-Oct-02 12:46 
GeneralRe: SDK vs MFC ownerdraw Pin
alex.barylski25-Oct-02 13:08
alex.barylski25-Oct-02 13:08 
GeneralRe: SDK vs MFC ownerdraw Pin
Ravi Bhavnani26-Oct-02 4:55
professionalRavi Bhavnani26-Oct-02 4:55 
GeneralNeed Help(CDC) Pin
Svin25-Oct-02 10:49
Svin25-Oct-02 10:49 
GeneralRe: Need Help(CDC) Pin
includeh1025-Oct-02 21:15
includeh1025-Oct-02 21:15 
GeneralBig thx Pin
Anonymous26-Oct-02 6:21
Anonymous26-Oct-02 6:21 
QuestionHow to write a code to increment by 4 Pin
needhelp5725-Oct-02 10:43
needhelp5725-Oct-02 10:43 
AnswerRe: How to write a code to increment by 4 Pin
Chris Losinger25-Oct-02 10:58
professionalChris Losinger25-Oct-02 10:58 
GeneralRe: How to write a code to increment by 4 Pin
needhelp5728-Oct-02 7:29
needhelp5728-Oct-02 7:29 
AnswerRe: How to write a code to increment by 4 Pin
Mel Feik25-Oct-02 11:09
Mel Feik25-Oct-02 11:09 
GeneralAuto-completion after . or -> doesn't work Pin
User 665825-Oct-02 10:34
User 665825-Oct-02 10:34 
GeneralRe: Auto-completion after . or -> doesn't work Pin
Chris Losinger25-Oct-02 10:56
professionalChris Losinger25-Oct-02 10:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.