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.
 
 
 
 

24 lines
502 B

#include <string>
#pragma once
namespace storm {
namespace jani {
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:
/// The name of the action.
std::string name;
};
}
}