You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
405 B

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