Usermode/AxWin4 - Code now compiling (if STL is present)
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / serialisation.cpp
1 /*
2  * Acess2 GUI v4
3  * - By John Hodge (thePowersGang) 
4  *
5  * serialisation.cpp
6  * - IPC Serialisation
7  */
8 #include <serialisation.hpp>
9 #include <cstddef>
10
11 namespace AxWin {
12
13 CDeserialiser::CDeserialiser(size_t Length, const void *Buffer)
14 {
15 }
16
17 ::uint8_t CDeserialiser::ReadU8()
18 {
19         return 0;
20 }
21
22 ::uint16_t CDeserialiser::ReadU16()
23 {
24         return 0;
25 }
26
27 CSerialiser::CSerialiser()
28 {
29 }
30
31 void CSerialiser::WriteU8(::uint8_t Value)
32 {
33 }
34
35 };      // namespace AxWin
36

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