Files
scully/inc/AST/Statement.h

21 lines
382 B
C
Raw Normal View History

2013-06-02 09:47:27 +02:00
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
2013-06-01 00:16:38 +02:00
#ifndef STATEMENT_H
#define STATEMENT_H
#include "AST/ASTElement.h"
class Statement : public ASTElement {
public:
Statement();
virtual ~Statement();
virtual void accept(ASTVisitor* visitor) = 0;
};
#endif // STATEMENT_H