aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/semantic-graph/attribute-group.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/semantic-graph/attribute-group.cxx')
-rw-r--r--xsd-frontend/semantic-graph/attribute-group.cxx33
1 files changed, 0 insertions, 33 deletions
diff --git a/xsd-frontend/semantic-graph/attribute-group.cxx b/xsd-frontend/semantic-graph/attribute-group.cxx
deleted file mode 100644
index f1a1b7a..0000000
--- a/xsd-frontend/semantic-graph/attribute-group.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-// file : xsd-frontend/semantic-graph/attribute-group.cxx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#include <cutl/compiler/type-info.hxx>
-
-#include <xsd-frontend/semantic-graph/attribute-group.hxx>
-
-namespace XSDFrontend
-{
- namespace SemanticGraph
- {
- AttributeGroup::
- AttributeGroup (Path const& file, unsigned long line, unsigned long column)
- : Node (file, line, column)
- {
- }
-
- namespace
- {
- using compiler::type_info;
-
- struct AttributeGroupInit
- {
- AttributeGroupInit ()
- {
- type_info ti (typeid (AttributeGroup));
- ti.add_base (typeid (Scope));
- insert (ti);
- }
- } attribute_group_init_;
- }
- }
-}