Former-commit-id: 082f5ddddc
082f5ddddc
@ -0,0 +1,14 @@
#include "src/storage/jani/Action.h"
namespace storm {
namespace jani {
Action::Action(std::string const& name) : name(name) {
// Intentionally left empty.
}
std::string const& Action::getName() const {
return this->name;
@ -0,0 +1,25 @@
#include <string>
#pragma once
class Action {
public:
/**
* Creates an action
* @param name name of the action
*/
Action(std::string const& name);
* Returns the name of the location.
std::string const& getName() const;
private:
std::string name;
};