-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
189 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,31 @@ | ||
/** | ||
* \file EventData.h | ||
* \brief Event class used in the state machine | ||
* \authors Michael Göttlicher | ||
* \copyright http://opensource.org/licenses/GPL-3.0 | ||
* \remarks Please use clangformat to format the code. See more code style on | ||
* https://github.com/cpvrlab/SLProject4/wiki/SLProject-Coding-Style | ||
*/ | ||
#ifndef SM_EVENT_DATA_H | ||
#define SM_EVENT_DATA_H | ||
|
||
namespace sm | ||
{ | ||
|
||
//----------------------------------------------------------------------------- | ||
class EventData | ||
{ | ||
public: | ||
virtual ~EventData() {} | ||
}; | ||
|
||
//----------------------------------------------------------------------------- | ||
class NoEventData : public EventData | ||
{ | ||
public: | ||
NoEventData() | ||
{ | ||
} | ||
}; | ||
|
||
//----------------------------------------------------------------------------- | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.