LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
fwd.hh
Go to the documentation of this file.
1 
6 #ifndef FRAME_FWD_HH
7 # define FRAME_FWD_HH
8 
9 # include <list>
10 
11 namespace frame
12 {
13 
14  // frame.hh.
15  class Frame;
16 
17  // access.hh.
18  class Access;
19  class In_Register;
20  class In_Frame;
21 
23  // FIXME: this is of course very unsatisfying, as it is a global,
24  // and should be bound to the target::Cpu.
25  extern size_t word_size;
26 
27  typedef std::list<bool> bool_list_type;
28  typedef std::list<const Access*> access_list_type;
29 
30 }
31 
32 #endif // !FRAME_FWD_HH