OSDN Git Service

fix cmake/Macros.cmake
[moflib/moflib.git] / moflib-1.0 / moflib / moflib / mof / Window.hpp
1 #pragma once
2
3 #include "mof/tstring.hpp"
4 #include <boost/scoped_ptr.hpp>
5 #include <boost/utility.hpp>
6 #include <windows.h>
7
8 namespace mof
9 {
10         
11     
12     class Window : boost::noncopyable
13     {
14             
15             struct Impl;
16             boost::scoped_ptr<Impl> m_pImpl;
17             
18         public:
19             Window( const mof::tstring& appname , int width , int height , bool fullscreen );
20             ~Window( );
21         HWND getHandler() const;
22   
23         
24     };
25
26
27 }