sencha-lang/Sencha-lang/AST/ASTStatement.h

20 lines
301 B
C
Raw Normal View History

2012-11-17 16:02:32 +00:00
/*
* ASTStatement.h
*
* Created on: Nov 4, 2012
* Author: attero
*/
#ifndef ASTSTATEMENT_H_
#define ASTSTATEMENT_H_
#include "ASTNode.h"
class ASTStatement : public ASTNode {
public:
ASTStatement();
2012-12-06 17:41:16 +00:00
virtual void execute() = 0;
2012-11-17 16:02:32 +00:00
virtual ~ASTStatement();
};
#endif /* ASTSTATEMENT_H_ */