Usermode/AxWin4 - Code now compiling (if STL is present)
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / CWindow.cpp
1 /*
2  * Acess2 GUI v4
3  * - By John Hodge (thePowersGang)
4  *
5  * CWindow.cpp
6  * - Window
7  */
8 #include <CWindow.hpp>
9
10 namespace AxWin {
11
12 CWindow::CWindow(CClient& client, const ::std::string& name):
13         m_client(client),
14         m_name(name),
15         m_rect(0,0,0,0)
16 {
17         
18 }
19
20 CWindow::~CWindow()
21 {
22 }
23
24 void CWindow::Repaint(const CRect& rect)
25 {
26         
27 }
28
29 };
30

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