// file : cli/traversal/class.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2009 Code Synthesis Tools CC // license : MIT; see accompanying LICENSE file #include namespace traversal { void class_:: traverse (type& c) { pre (c); names (c); post (c); } void class_:: pre (type&) { } void class_:: post (type&) { } }