5fd13c081939232a857fa5c8d50d66ea8d1cb366
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / CRect.cpp
1 /*
2  * Acess2 GUI v4
3  * - By John Hodge (thePowersGang)
4  *
5  * CRect.cpp
6  * - Rectangle
7  */
8 #include <CRect.hpp>
9
10 namespace AxWin {
11
12 CRect::CRect(int x, int y, int w, int h)
13         //m_x(x), m_y(y), m_w(w), m_h(h)
14 {
15 }
16
17 bool CRect::Contains(const CRect& other) const
18 {
19         return false;
20 }
21
22 };
23

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