libsidplayfp 2.15.0
Event.h
1/*
2 * This file is part of libsidplayfp, a SID player engine.
3 *
4 * Copyright 2011-2015 Leandro Nini <drfiemost@users.sourceforge.net>
5 * Copyright 2007-2010 Antti Lankila
6 * Copyright 2001 Simon White
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 */
22
23#ifndef EVENT_H
24#define EVENT_H
25
26#include <stdint.h>
27
28
29namespace libsidplayfp
30{
31
32using event_clock_t = int_fast64_t;
33
34
38class Event
39{
40 friend class EventScheduler;
41
42private:
44 Event *next;
45
47 event_clock_t triggerTime;
48
50 const char * const m_name;
51
52public:
58 Event(const char * const name) :
59 m_name(name) {}
60
66 virtual void event() = 0;
67
72 const char* name() const { return m_name; }
73
74protected:
75 ~Event() = default;
76};
77
78}
79
80#endif // EVENT_H
Definition EventScheduler.h:62
Definition Event.h:39
Event(const char *const name)
Definition Event.h:58
const char * name() const
Definition Event.h:72
virtual void event()=0