Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
acts-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
acts
acts-core
Commits
0b2ab03f
Commit
0b2ab03f
authored
5 years ago
by
Paul Gessinger
Committed by
Paul Gessinger
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
::is() can be called with only a template argument
parent
cc40df73
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!688
Finite State Machine helper class
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Core/include/Acts/Utilities/FiniteStateMachine.hpp
+6
-2
6 additions, 2 deletions
Core/include/Acts/Utilities/FiniteStateMachine.hpp
with
6 additions
and
2 deletions
Core/include/Acts/Utilities/FiniteStateMachine.hpp
+
6
−
2
View file @
0b2ab03f
...
@@ -38,7 +38,6 @@ class FiniteStateMachine {
...
@@ -38,7 +38,6 @@ class FiniteStateMachine {
const
StateVariant
&
getState
()
const
noexcept
{
return
m_state
;
}
const
StateVariant
&
getState
()
const
noexcept
{
return
m_state
;
}
StateVariant
&
getState
()
noexcept
{
return
m_state
;
}
private
:
private
:
template
<
typename
T
,
typename
S
,
typename
...
Args
>
template
<
typename
T
,
typename
S
,
typename
...
Args
>
using
on_exit_t
=
decltype
(
using
on_exit_t
=
decltype
(
...
@@ -74,13 +73,18 @@ class FiniteStateMachine {
...
@@ -74,13 +73,18 @@ class FiniteStateMachine {
template
<
typename
S
>
template
<
typename
S
>
bool
is
(
const
S
&
/*state*/
)
const
noexcept
{
bool
is
(
const
S
&
/*state*/
)
const
noexcept
{
return
is
<
S
>
();
}
template
<
typename
S
>
bool
is
()
const
noexcept
{
if
(
std
::
get_if
<
S
>
(
&
m_state
))
{
if
(
std
::
get_if
<
S
>
(
&
m_state
))
{
return
true
;
return
true
;
}
}
return
false
;
return
false
;
}
}
bool
terminated
()
const
noexcept
{
return
is
(
Terminated
{}
);
}
bool
terminated
()
const
noexcept
{
return
is
<
Terminated
>
(
);
}
private
:
private
:
template
<
typename
T
,
typename
S
,
typename
E
,
typename
...
Args
>
template
<
typename
T
,
typename
S
,
typename
E
,
typename
...
Args
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment