From 0ea5fc66924303d1bf73ba283a383e2aadee02f2 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sat, 11 Aug 2018 20:21:34 +0200 Subject: Initial commit --- docs/doxygen/nel/bit__mem__stream_8h.html | 175 ++++++++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 docs/doxygen/nel/bit__mem__stream_8h.html (limited to 'docs/doxygen/nel/bit__mem__stream_8h.html') diff --git a/docs/doxygen/nel/bit__mem__stream_8h.html b/docs/doxygen/nel/bit__mem__stream_8h.html new file mode 100644 index 00000000..608d5b67 --- /dev/null +++ b/docs/doxygen/nel/bit__mem__stream_8h.html @@ -0,0 +1,175 @@ + + + + nevrax.org : docs + + + + + + + + + + + + + + +
# Home   # nevrax.com   
+ + + + +
Nevrax
+ + + + + + + + + + +
+ + +
+ Nevrax.org
+ + + + + + + +
#News
#Mailing-list
#Documentation
#CVS
#Bugs
#License
+
+ + +
+ + +
+Docs + +
+  + + + + + +
Documentation 
+ +
+Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages   Search  
+

bit_mem_stream.h File Reference

Bit-oriented memory stream. +More... +

+#include "nel/misc/types_nl.h"
+#include "nel/misc/mem_stream.h"
+ +

+Go to the source code of this file. + + + + + + +

Namespaces

namespace  NLMISC

Base type serialisation.

Those method are a specialisation of template method "void serial(T&)".

#define serialAdapt(b, type)
#define serialAdapt64(b)
+


Detailed Description

+Bit-oriented memory stream. +

+

+Id:
+ bit_mem_stream.h,v 1.15 2002/10/29 10:44:23 legros Exp
+

+ +

+Definition in file bit_mem_stream.h.


Define Documentation

+

+ + + + +
+ + + + + + + + + + +
#define serialAdaptb,
type   +
+
+ + + + + +
+   + + +

+Value:

uint32 ub=0; \
+        if ( isReading() ) \
+        { \
+                serial( ub, sizeof(type)*8 ); \
+                b = (type)ub; \
+        } \
+        else \
+        { \
+                ub = (uint32)b; \
+                serial( ub, sizeof(type)*8 ); \
+        }
+

+Definition at line 216 of file bit_mem_stream.h. +

+Referenced by NLMISC::CBitMemStream::serial.

+

+ + + + +
+ + + + + + + +
#define serialAdapt64  +
+
+ + + + + +
+   + + +

+Value:

serial( *((uint32*)(&b)+1), 32); \
+        serial( *((uint32*)(&b)), 32);
+

+Definition at line 255 of file bit_mem_stream.h. +

+Referenced by NLMISC::CBitMemStream::serial.

+ + + +
                                                                                                                                                                    +

+ + -- cgit v1.2.1