]> Dogcows Code - chaz/yoink/blob - src/moof/event.hh
remove some unused stlplus modules
[chaz/yoink] / src / moof / event.hh
1
2 /*] Copyright (c) 2009-2011, Charles McGarvey [*****************************
3 **] All rights reserved.
4 *
5 * Distributable under the terms and conditions of the 2-clause BSD license;
6 * see the file COPYING for a complete text of the license.
7 *
8 *****************************************************************************/
9
10 #ifndef _MOOF_EVENT_HH_
11 #define _MOOF_EVENT_HH_
12
13 /**
14 * \file event.hh
15 * Defines an event object.
16 */
17
18 #include <SDL/SDL.h>
19
20
21 namespace moof {
22
23
24 /**
25 * The event handling in SDL is so big that it would take more time than
26 * it's worth to add an object-oriented abstraction layer that would
27 * completely cover what SDL has already layed down. Fortunately, SDL
28 * event structures are easy to work with, and it is not the purpose of
29 * this library to completely hide its dependencies or provide complete
30 * abstractions.
31 */
32 typedef SDL_Event event;
33
34
35 } // namespace moof
36
37 #endif // _MOOF_EVENT_HH_
38
This page took 0.031874 seconds and 4 git commands to generate.