#ifndef RETURNSTATEMENT_HPP #define RETURNSTATEMENT_HPP #include "Statement.hpp" #include "SourceLocation.hpp" class ReturnStatement: public Statement{ public: SourceLocation getReturnLocation() const; void setReturnLocation(SourceLocation); }; #endif