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.
20 lines
524 B
20 lines
524 B
#include "Property.h"
|
|
namespace storm {
|
|
namespace jani {
|
|
Property::Property(std::string const& name, std::shared_ptr<storm::logic::Formula const> const& formula, std::string const& comment)
|
|
: name(name), filterExpression(FilterExpression(formula)), comment(comment)
|
|
{
|
|
|
|
}
|
|
|
|
std::string const& Property::getName() const {
|
|
return this->name;
|
|
}
|
|
|
|
std::string const& Property::getComment() const {
|
|
return this->comment;
|
|
}
|
|
|
|
|
|
}
|
|
}
|