00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 #ifndef _WIN32_WINDOW_H_ 00021 #define _WIN32_WINDOW_H_ 00022 00023 #include <windows.h> 00024 00025 namespace TestFrameWork 00026 { 00027 00028 class Win32Window 00029 { 00030 public: 00031 Win32Window(void); 00032 00033 ~Win32Window(void); 00034 00035 HWND m_hwnd; 00036 00037 HDC m_hdc; 00038 }; 00039 00040 } 00041 00042 #endif
1.6.2