// file : CCF/IDL2/Traversal/Exception.cpp // author : Boris Kolpackov // cvs-id : $Id$ #include "CCF/IDL2/Traversal/Exception.hpp" namespace CCF { namespace IDL2 { namespace Traversal { void Exception:: traverse (Type& s) { pre (s); name (s); names (s); post (s); } void Exception:: pre (Type&) { } void Exception:: name (Type&) { } void Exception:: post (Type&) { } } } }