usermode/axwin4 - Blit to screen planned
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / CSurface.cpp
1 /*
2  * Acess2 GUI v4
3  * - By John Hodge (thePowersGang)
4  *
5  * CWindow.cpp
6  * - Window
7  */
8 #include <CSurface.hpp>
9
10 namespace AxWin {
11
12 CSurface::CSurface(unsigned int x, unsigned int y, unsigned int w, unsigned int h):
13         m_rect(x,y, w,h)
14 {
15 }
16
17 CSurface::~CSurface()
18 {
19 }
20
21 const uint32_t* CSurface::GetScanline(unsigned int row, unsigned int x_ofs) const
22 {
23         return 0;
24 }
25
26
27 };      // namespace AxWin
28
29

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