#ifndef BREAKSTATEMENT_HPP #define BREAKSTATEMENT_HPP #include "Statement.hpp" #include "SourceLocation.hpp" class BreakStatement: public Statement{ public: SourceLocation getBreakLocation() const; void setBreakLocation(SourceLocation); private: SourceLocation _BreakLoc; }; #endif