00001 #include <iostream>
00002 using namespace std;
00003
00004
00005
00006
00007 class CarElementPrintVisitor : public CarElementVisitor
00008 {
00009 public:
00010 void visit(Wheel& wheel) const
00011 {
00012 cout << "Visiting " << wheel.getName() << " wheel" << endl;
00013 }
00014 void visit(Engine& engine) const
00015 {
00016 cout << "Visiting engine" << endl;
00017 }
00018 void visit(Body& body) const
00019 {
00020 cout << "Visiting body" << endl;
00021 }
00022 void visitCar(Car& car) const
00023 {
00024 cout << endl << "Visiting car" << endl;
00025 vector<CarElement*>& elems = car.getElements();
00026 for(vector<CarElement*>::iterator it = elems.begin();
00027 it != elems.end(); ++it )
00028 {
00029 (*it)->accept(*this);
00030 }
00031 cout << "Visited car" << endl;
00032 }
00033 };
00034