yasmine
event_fwd.hpp
Go to the documentation of this file.
1 // //
3 // This file is part of the Seadex yasmine ecosystem (http://yasmine.seadex.de). //
4 // Copyright (C) 2016-2017 Seadex GmbH //
5 // //
6 // Licensing information is available in the folder "license" which is part of this distribution. //
7 // The same information is available on the www @ http://yasmine.seadex.de/Licenses.html. //
8 // //
10 
11 
12 #ifndef EVENT_FWD_622C6A23_5E15_4A6B_8278_460C74941A10
13 #define EVENT_FWD_622C6A23_5E15_4A6B_8278_460C74941A10
14 
15 
16 #include <vector>
17 
18 #include "essentials/compatibility/compatibility.hpp"
19 
20 
21 namespace sxy
22 {
23 
24 
25 class event;
26 typedef sxe::shared_ptr< event > event_sptr;
27 typedef std::vector< event_sptr > events;
28 
29 
30 }
31 
32 
33 #endif
Interface of an event. An event has an ID, a name and a priority (for processing by the async state m...
Definition: event.hpp:28
Definition: adapter_cpp11.hpp:21
sxe::shared_ptr< event > event_sptr
Definition: event_fwd.hpp:25
std::vector< event_sptr > events
Definition: event_fwd.hpp:27