LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
access.hxx
Go to the documentation of this file.
1 
6 #ifndef TRANSLATE_ACCESS_HXX
7 # define TRANSLATE_ACCESS_HXX
8 
9 # include <translate/fwd.hh>
10 # include <translate/access.hh>
11 
12 namespace translate
13 {
14 
15  inline
16  Access::Access(const Level& home,
17  const frame::Access* access) :
18  home_(home),
19  access_(access)
20  {
21  }
22 
23  inline const Level&
25  {
26  return home_;
27  }
28 
29  inline const frame::Access*
31  {
32  return access_;
33  }
34 
35 }
36 
37 #endif // !TRANSLATE_ACCESS_HXX