LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
name.hh
Go to the documentation of this file.
1 
6 #ifndef TREE_NAME_HH
7 # define TREE_NAME_HH
8 
9 # include <iosfwd>
10 
11 # include <tree/exp.hh>
12 # include <tree/label.hh>
13 # include <temp/label.hh>
14 
15 namespace tree
16 {
17 
18  class Name : public Exp
19  {
20  public:
22  Name (const temp::Label& label);
23 
27 
28  temp::Label label_get () const;
29 
31  virtual kind_tree_type kind_get () const override;
32 
38  virtual std::ostream& tag_print (std::ostream& ostr) const override;
39 
42  private:
45  };
46 
47 }
48 
49 # include <tree/name.hxx>
50 
51 #endif // !TREE_NAME_HH