LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
nil-exp.hh
Go to the documentation of this file.
1 
6 #ifndef AST_NIL_EXP_HH
7 # define AST_NIL_EXP_HH
8 
9 # include <ast/exp.hh>
10 
11 namespace ast
12 {
13 
15  class NilExp : public Exp
16  {
19  public:
21  NilExp(const Location& location);
23  virtual ~NilExp();
26 
27 
28  public:
30  virtual void accept(ConstVisitor& v) const override;
32  virtual void accept(Visitor& v) override;
34  };
35 
36 } // namespace ast
37 
38 # include <ast/nil-exp.hxx>
39 
40 #endif // !AST_NIL_EXP_HH