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 TREE_FRAGMENTS_HH
7 # define TREE_FRAGMENTS_HH
8 
9 # include <list>
10 # include <tree/fwd.hh>
11 
12 namespace tree
13 {
14 
16  class Fragments : public std::list<tree::Fragment*>
17  {
18  public:
19  typedef std::list<tree::Fragment*> super_type;
20 
21  // Inherit constructors from base class.
23 
24  virtual ~Fragments ();
25  };
26 
28  std::ostream& operator<< (std::ostream& o, const Fragments& f);
29 
30 } // namespace tree
31 
32 #endif // !TREE_FRAGMENTS_HH