// file : odb/semantics/relational/model.hxx // copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC // license : GNU GPL v3; see accompanying LICENSE file #ifndef ODB_SEMANTICS_RELATIONAL_MODEL_HXX #define ODB_SEMANTICS_RELATIONAL_MODEL_HXX #include namespace semantics { namespace relational { class model: public graph, public qscope { public: model () { } virtual string kind () const { return "model"; } public: using qscope::add_edge_left; using qscope::add_edge_right; private: model (model const&); model& operator= (model const&); }; } } #endif // ODB_SEMANTICS_RELATIONAL_MODEL_HXX