]> Dogcows Code - chaz/yoink/blobdiff - src/moof/event.hh
the massive refactoring effort
[chaz/yoink] / src / moof / event.hh
similarity index 50%
rename from src/Moof/Event.hh
rename to src/moof/event.hh
index 53b86f82dd106619e64a4f7bbc5e8b4ab6276e7f..c717db49ea09b6acb3e7f0122afa688c091cccd6 100644 (file)
 
 #ifndef _MOOF_EVENT_HH_
 #define _MOOF_EVENT_HH_
+
+/**
+ * \file event.hh
+ * Defines an event object.
+ */
        
 #include <SDL/SDL.h>
 
 
-namespace Mf {
-
+namespace moof {
 
-// The event handling in SDL is so big that it would take more time than
-// it's worth to add an object-oriented abstraction layer that would
-// completely cover what SDL has already layed down.  Fortunately, SDL
-// event structures are easy to work with, and it is not the purpose of
-// this library to completely hide its dependencies and provide complete
-// abstractions.
 
-typedef SDL_Event Event;
+/**
+ * The event handling in SDL is so big that it would take more time than
+ * it's worth to add an object-oriented abstraction layer that would
+ * completely cover what SDL has already layed down.  Fortunately, SDL
+ * event structures are easy to work with, and it is not the purpose of
+ * this library to completely hide its dependencies or provide complete
+ * abstractions.
+ */
+typedef SDL_Event event;
 
 
-} // namespace Mf
+} // namespace moof
 
 #endif // _MOOF_EVENT_HH_
 
This page took 0.020417 seconds and 4 git commands to generate.