SLProject
4.2.000
A platform independent 3D computer graphics framework for desktop OS, Android, iOS and online in web browsers
EventData.h
Go to the documentation of this file.
1
/**
2
* \file EventData.h
3
* \brief Event class used in the state machine
4
* \authors Michael Göttlicher
5
* \copyright http://opensource.org/licenses/GPL-3.0
6
* \remarks Please use clangformat to format the code. See more code style on
7
* https://github.com/cpvrlab/SLProject4/wiki/SLProject-Coding-Style
8
*/
9
#ifndef SM_EVENT_DATA_H
10
#define SM_EVENT_DATA_H
11
12
namespace
sm
13
{
14
15
//-----------------------------------------------------------------------------
16
class
EventData
17
{
18
public
:
19
virtual
~EventData
() {}
20
};
21
//-----------------------------------------------------------------------------
22
class
NoEventData
:
public
EventData
23
{
24
public
:
25
NoEventData
()
26
{
27
}
28
};
29
//-----------------------------------------------------------------------------
30
}
31
#endif
sm::EventData
Definition:
EventData.h:17
sm::EventData::~EventData
virtual ~EventData()
Definition:
EventData.h:19
sm::NoEventData
Definition:
EventData.h:23
sm::NoEventData::NoEventData
NoEventData()
Definition:
EventData.h:25
sm
Collection of classes for a state machine implementation used in the Erleb-AR app.
Definition:
Event.h:25
apps
source
sm
EventData.h
Generated by
1.9.1