#include "fahrzeug.h" 
#include <iostream> 

class automobil : public fahrzeug 
{ 
  public: 
    void bewegen() 
    { 
      std::cout << "Brummbrumm" << std::endl; 
    } 
}; 
