LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
label.hh
Go to the documentation of this file.
1 
6 #ifndef ASSEM_LABEL_HH
7 # define ASSEM_LABEL_HH
8 
9 # include <assem/instr.hh>
10 # include <temp/label.hh>
11 
12 namespace assem
13 {
14 
15  class Label : public Instr
16  {
17  public:
18  Label(const std::string& assem,
19  const temp::Label& label);
20 
21  temp::Label label_get() const;
22 
23  private:
25  }; // class Label
26 
27 } // namespace assem
28 
29 # include <assem/label.hxx>
30 
31 #endif // !ASSEM_LABEL_HH