// -*- C++ -*- (c) 2009 Petr Rockai #include #include #ifndef DIVINE_GENERATOR_COMMON_H #define DIVINE_GENERATOR_COMMON_H namespace divine { namespace generator { using namespace graph; template< typename _Node > struct Common : graph::Base< _Node > { typedef _Node Node; }; } } #endif