aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/semantic-graph/complex.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/semantic-graph/complex.cxx')
-rw-r--r--xsd-frontend/semantic-graph/complex.cxx44
1 files changed, 0 insertions, 44 deletions
diff --git a/xsd-frontend/semantic-graph/complex.cxx b/xsd-frontend/semantic-graph/complex.cxx
deleted file mode 100644
index d1c2f7a..0000000
--- a/xsd-frontend/semantic-graph/complex.cxx
+++ /dev/null
@@ -1,44 +0,0 @@
-// file : xsd-frontend/semantic-graph/complex.cxx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#include <cutl/compiler/type-info.hxx>
-
-#include <xsd-frontend/semantic-graph/complex.hxx>
-
-namespace XSDFrontend
-{
- namespace SemanticGraph
- {
- Complex::
- Complex ()
- : abstract_ (false), mixed_ (false), contains_compositor_ (0)
- {
- }
-
- Complex::
- Complex (Path const& file,
- unsigned long line,
- unsigned long column,
- bool abstract)
- : Node (file, line, column),
- abstract_ (abstract), mixed_ (false), contains_compositor_ (0)
- {
- }
-
- namespace
- {
- using compiler::type_info;
-
- struct ComplexInit
- {
- ComplexInit ()
- {
- type_info ti (typeid (Complex));
- ti.add_base (typeid (Type));
- ti.add_base (typeid (Scope));
- insert (ti);
- }
- } complex_init_;
- }
- }
-}