// file : cli/semantics/class.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : MIT; see accompanying LICENSE file #include #include namespace semantics { // type info // namespace { struct init { init () { using compiler::type_info; // inherits // { type_info ti (typeid (inherits)); ti.add_base (typeid (edge)); insert (ti); } // class_ // { type_info ti (typeid (class_)); ti.add_base (typeid (scope)); insert (ti); } } } init_; } }