#include "BranchStatement.h" #include "AbstractStatementVisitor.h" namespace storm { namespace pgcl { std::shared_ptr const& BranchStatement::getLeftBranch() const { return this->leftBranch; } std::shared_ptr const& BranchStatement::getRightBranch() const { return this->rightBranch; } } }