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

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