|
|
|
#ifndef HEADER_KB_MICHAELROTH
#define HEADER_KB_MICHAELROTH
#include "KB_Personal.h"
#include <string>
/************************************************************************/
/* in dieser Hilfsklasse werden ein paar Pers. Informationen gespeichert */
/************************************************************************/
class KB_MichaelRoth : public KB_PersonalInformation
{
|
public:
void lebenslauf();
// [...]
private:
// ...
|
};
#endif
// KB_MichaelRoth.cpp
KB_MichaelRoth::KB_MichaelRoth()
{
name ("Michael","Roth");
anschrift ("Gießener Straße 25","D-35463","Fernwald");
tel ("0641 3205077");
}
|
|