LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
stm.hh
Go to the documentation of this file.
1 
6 #ifndef TREE_STM_HH
7 # define TREE_STM_HH
8 
9 # include <tree/tree.hh>
10 
11 namespace tree
12 {
13 
17  class Stm : public Tree
18  {
19  public:
20 
21  Stm(const tree_list_type& children) :
22  Tree(children)
23  {}
24 
25  Stm()
26  : Tree()
27  {}
28 
29  virtual ~Stm();
30 
31  };
32 
33 }
34 
35 #endif // !TREE_STM_HH