I have a class that should call a visitor method for every member variable. Something like this:
class A{
int a, b, c;
public:
void accept(Visitor &visitor){
visitor.visit(a);
visitor.visit(b);
visitor.visit(c);
}
};
How can I get void accept() const method with the same code without code duplication?
The obvious solution with the duplication is to add a method:
void accept(Visitor &visitor) const {
visitor.visit(a);
visitor.visit(b);
visitor.visit(c);
}
That method has exactly the meaning I want, but I would like to avoid the code duplication. The reason to have both methods is to be able to read the variables by a 'reading' visitor and having the accept method nicely const. Then the non-const accept would be possible to use for 'writing/updating' visitors.

visit? If it's const, then there's no need for a non-constaccept. If it's not, then thisacceptcan't be const. – Beta Mar 9 '11 at 21:35conston the currentacceptmethod? Why would you need a non-const version of accept? – Tim Mar 9 '11 at 21:36visit()is overloaded forconstand non-const. – Oli Charlesworth Mar 9 '11 at 21:44Visitor::visitcould be overloaded onconst int&vs.int¶meter, with the latter potentially modifying the thing visited. Not sure if that's wise, but the questioner's current, duplicated code permits it. – Steve Jessop Mar 9 '11 at 21:45