aboutsummaryrefslogtreecommitdiff
path: root/odb/semantics/unit.cxx
blob: d99f358835e7f5fd8ba74852cb75548cb256742b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// file      : odb/semantics/unit.cxx
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v3; see accompanying LICENSE file

#include <odb/gcc.hxx>

#include <cutl/compiler/type-info.hxx>
#include <odb/semantics/unit.hxx>

namespace semantics
{
  unit::
  unit (path const& file)
      : node (file, 1, 1, global_namespace), graph_ (*this)
  {
    // Use a special edge to get this->name() return the global
    // namespace name ("").
    //
    new_edge<global_names> (*this, *this);
    node::unit (*this);
  }

  // type info
  //
  namespace
  {
    struct init
    {
      init ()
      {
        using compiler::type_info;

        // unit
        //
        {
          type_info ti (typeid (unit));
          ti.add_base (typeid (namespace_));
          insert (ti);
        }
      }
    } init_;
  }
}