Usermode/AxWin4 - Code now compiling (if STL is present)
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / include / CCompositor.hpp
index f6f2e7f..e86286a 100644 (file)
@@ -8,7 +8,30 @@
 #ifndef _CCOMPOSITOR_H_
 #define _CCOMPOSITOR_H_
 
+#include <list>
+#include "CRect.hpp"
+#include "CWindow.hpp"
 
+namespace AxWin {
+
+class CClient;
+
+class CCompositor
+{
+       ::std::list<CRect>      m_damageRects;
+       ::std::list<CWindow*>   m_windows;
+
+public:
+       CCompositor();
+
+       CWindow* CreateWindow(CClient& client);
+
+       void    Redraw();
+       void    DamageArea(const CRect& rect);
+};
+
+
+};
 
 #endif
 

UCC git Repository :: git.ucc.asn.au