libDXF 0.0.1
A library with DXF related functions written in C.

param.h

Go to the documentation of this file.
00001 
00036 #ifndef LIBDXF_SRC_PARAM_H
00037 #define LIBDXF_SRC_PARAM_H
00038 
00039 
00040 #include "global.h"
00041 
00042 
00043 #ifdef __cplusplus
00044 extern "C" {
00045 #endif
00046 
00047 
00051 typedef union
00052 dxf_param
00053 {
00054         int group_code;
00056         int I;
00058         double D;
00060         char S[DXF_MAX_STRING_LENGTH];
00062 } DxfParam;
00063 
00064 
00065 #ifdef __cplusplus
00066 }
00067 #endif
00068 
00069 
00070 #endif /* LIBDXF_SRC_PARAM_H */
00071 
00072 
00073 /* EOF */