Blang/src/include/Statement/ReturnStatement.hpp

16 lines
259 B
C++
Raw Normal View History

2016-04-22 21:46:31 +02:00
#ifndef RETURNSTATEMENT_HPP
#define RETURNSTATEMENT_HPP
#include "Statement.hpp"
#include "SourceLocation.hpp"
class ReturnStatement: public Statement{
public:
SourceLocation getReturnLocation() const;
void setReturnLocation(SourceLocation);
};
#endif