LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
fragments.hh
Go to the documentation of this file.
1 
6 #ifndef ASSEM_FRAGMENTS_HH
7 # define ASSEM_FRAGMENTS_HH
8 
9 # include <list>
10 # include <assem/fwd.hh>
11 
12 namespace assem
13 {
14 
16  class Fragments : public std::list<Fragment*>
17  {
18  public:
20  virtual ~Fragments();
21 
23  std::ostream& print(std::ostream& ostr);
24  };
25 
26  std::ostream&
27  operator<<(std::ostream& ostr, const Fragments& fragments);
28 
29 } // namespace assem
30 
31 #endif // !ASSEM_FRAGMENTS_HH