Sleeping Wombat Common Library  0.50.0
swCommonLibrary
AttributeHeader.h
Go to the documentation of this file.
1 #pragma once
2 
10 
11 namespace sw
12 {
13 
16 {
17  Size AttribSize;
18  AttributeType AttribType;
19 
20 
21 // ================================ //
22 //
23  AttributeHeader( AttributeType type )
24  : AttribSize( 0 )
25  , AttribType( type )
26  {}
27 };
28 
29 
30 } // sw
AttributeType AttribType
Attribute type. Low 16 bits are reserved fo built in attributes.
Definition: AttributeHeader.h:18
Definition: Exception.h:11
Plik zawiera definicje podstawowych typów zmiennych.
Definition: AttributeHeader.h:15
Size AttribSize
Size of attribute including this field.
Definition: AttributeHeader.h:17