// file : odb/semantics/relational/foreign-key.cxx // copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC // license : GNU GPL v3; see accompanying LICENSE file #include #include namespace semantics { namespace relational { // type info // namespace { struct init { init () { using compiler::type_info; // foreign_key // { type_info ti (typeid (foreign_key)); ti.add_base (typeid (unameable)); ti.add_base (typeid (key)); insert (ti); } } } init_; } } }