// file : xsd-frontend/semantic-graph/namespace.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef XSD_FRONTEND_SEMANTIC_GRAPH_NAMESPACE_HXX #define XSD_FRONTEND_SEMANTIC_GRAPH_NAMESPACE_HXX #include namespace XSDFrontend { namespace SemanticGraph { class Namespace : public virtual Scope { protected: friend class Bits::Graph; Namespace (Path const& file, UnsignedLong line, UnsignedLong column); Void add_edge_right (BelongsToNamespace&) { } using Scope::add_edge_right; }; } } #endif // XSD_FRONTEND_SEMANTIC_GRAPH_NAMESPACE_HXX