LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
comment.hh
Go to the documentation of this file.
1 
6 #ifndef ASSEM_COMMENT_HH
7 # define ASSEM_COMMENT_HH
8 
9 # include <assem/instr.hh>
10 
11 namespace assem
12 {
13 
14  class Comment : public Instr
15  {
16  public:
17  Comment(const std::string& comment);
18 
19  virtual std::ostream& print(std::ostream& ostr) const;
20  }; // class Comment
21 
22 } // namespace assem
23 
24 # include <assem/comment.hxx>
25 
26 #endif // !ASSEM_COMMENT_HH