:> compile rothmichael /o de.obj|

 
// Ben.Ausw. auswerten
void CInternetPage::Navigate()
                    
{
  switch(m_ID)
  { 
    case ID_ABOUT:
        MichaelRoth.About();
    break;
    case ID_PROJECTS:
        MichaelRoth.Projekte();
        break;
    case ID_SITES:
        MichaelRoth.Links();
        break;
  }
}

 

 
#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");
        
    }

    
    
				  /************************************************************************/
				  /* (C) 2003 Michael Roth http://www.rothmichael.de info@rothmichael.de  */
				  /************************************************************************/