Files
scully/inc/AST/LoadExpression.h
2013-06-02 09:47:27 +02:00

26 lines
491 B
C++

/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#ifndef LOADEXPRESSION_H
#define LOADEXPRESSION_H
#include <string>
#include "AST/Expression.h"
class LoadExpression : public Expression {
public:
LoadExpression(std::string id);
virtual ~LoadExpression();
virtual void accept(ASTVisitor *visitor);
std::string getId();
private:
std::string id_;
};
#endif // LOADEXPRESSION_H