// file : cli/traversal/class.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2009 Code Synthesis Tools CC // license : MIT; see accompanying LICENSE file #ifndef CLI_TRAVERSAL_CLASS_HXX #define CLI_TRAVERSAL_CLASS_HXX #include #include namespace traversal { struct class_: scope_template { virtual void traverse (type&); virtual void pre (type&); virtual void post (type&); }; } #endif // CLI_TRAVERSAL_CLASS_HXX