00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _APP_WINDOW_LISTENER_H_
00021 #define _APP_WINDOW_LISTENER_H_
00022
00023 #include "IWindowListener.h"
00024
00025 namespace TestFrameWork
00026 {
00027
00028 class Application;
00029
00030 class AppWindowListener :
00031 public IWindowListener
00032 {
00033 public:
00034 AppWindowListener(Application* application);
00035
00036 ~AppWindowListener(void);
00037
00038 void OnClose(void);
00039
00040 private:
00041 Application* m_application;
00042
00043 };
00044
00045 }
00046
00047 #endif