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 15:48:28 +02:00
|
|
|
#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
|