Usermode/libc++ - system_error and vector implementation
[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 ::int16_t CDeserialiser::ReadS16()
28 {
29         return 0;
30 }
31
32 ::std::string CDeserialiser::ReadString()
33 {
34         return "";
35 }
36
37 CSerialiser::CSerialiser()
38 {
39 }
40
41 void CSerialiser::WriteU8(::uint8_t Value)
42 {
43 }
44
45 void CSerialiser::WriteU16(::uint16_t Value)
46 {
47 }
48
49 };      // namespace AxWin
50

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