Ocular Engine
ShutdownEvent.hpp
1 
17 #pragma once
18 #ifndef __H__OCULAR_EVENTS_SHUTDOWN_EVENT__H__
19 #define __H__OCULAR_EVENTS_SHUTDOWN_EVENT__H__
20 
21 #include "Events/AEvent.hpp"
22 
23 //------------------------------------------------------------------------------------------
24 
29 namespace Ocular
30 {
35  namespace Core
36  {
45  class ShutdownEvent : public AEvent
46  {
47  public:
48 
49  ShutdownEvent();
50  virtual ~ShutdownEvent();
51 
52  protected:
53 
54  private:
55  };
56  }
60 }
65 //------------------------------------------------------------------------------------------
66 
67 #endif
Definition: ShutdownEvent.hpp:45
Note: Once this library is made dynamic, this will no longer be needed.
Definition: Common.hpp:70
Definition: AEvent.hpp:44