Blang/src/include/Statement/ExprStatement.hpp

27 lines
362 B
C++
Raw Normal View History

2016-04-22 21:46:31 +02:00
#ifndef EXPRSTATEMENT_HPP
#define EXPRSTATEMENT_HPP
#include "Statement.hpp"
class ExprStatement: public Statement{
public:
void getCond();
void getCond() const;
void setCond();
void getThen();
void getThen() const;
void setThen();
void getElse();
void getElse() const;
void setElse();
void getIfLocation();
void getThenLocation();
};
#endif