µSer
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 123]
 NuSerµSer main API
 NByteOrderByte orders for integers in serialized data
 CBEAttribute: Store an integer as Big Endian
 CLEAttribute: Store an integer as Little Endian
 CPDPAttribute: Store an integer as PDP-Endian
 NDyn
 COptionalAn attribute that decides whether a member of a struct is (de)serialized at all depending on external data, typically previously deserialized
 CSizeAn attribute that defines the size of a container that is a member of a struct to depend on external data, typically previously deserialized
 NHookAttributes to define hook functions for uSer
 CDeSerPostAttribute: Define a function to be called after the object (which can but need not be a struct member) is deserialized
 CDeSerPreAttribute: Define a function to be called before the object (which can but need not be a struct member) is deserialized
 CSerPostAttribute: Define a function to be called after the object (which can but need not be a struct member) is serialized
 CSerPreAttribute: Define a function to be called before the object (which can but need not be a struct member) is serialized
 NPadding
 CFixedAttribute: Store a fixed number of padding bits after the actual bits of an integer. Can only be applied to integers
 CNoneAttribute: Store no padding bits after the actual bits of an integer. This is the default. Can only be applied to integers
 NSignFormatFormats for signed integers
 COnesComplementAttribute: Store a signed integer in One's Complement format
 CSignedMagnitudeAttribute: Store a signed integer in Signed-Magnitude format
 CTwosComplementAttribute: Store a signed integer in Two's Complement format
 CDynSize
 CException
 CFixedSize
 CInfSize
 CMaxSizeIndicates a fixed maximum size for a dynamic data structure
 CNoDynIndicates a data structure with no dynamic data
 CRawInfoAttribute: Declares the serialization word explicitly
 CStructMembersDefine the members of a struct by providing member pointers
 CUnlimitedIndicates a dynamic data structure whose maximum serialized size can not be pre-calculated (e.g. when containers are used)
 CWidthAttribute: Define the serialized size of an integer type. May not be larger than the C(++) data type used