Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
Action.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5namespace storm {
6namespace jani {
7class Action {
8 public:
13 Action(std::string const& name);
14
18 std::string const& getName() const;
19
20 private:
22 std::string name;
23};
24
25} // namespace jani
26} // namespace storm
std::string const & getName() const
Returns the name of the location.
Definition Action.cpp:9