Advertisement
Guest User

Untitled

a guest
May 24th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. void DirectionsList::Show()
  2. {
  3. ShowDirections visitor;
  4. for( std::vector < IDirection *>::iterator it = Dir.begin(); it != Dir.end(); ++it )
  5. ( * it )->acceptVisitor( _visitor );
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement