libDXF 0.0.1
A library with DXF related functions written in C.
|
DXF definition of an AutoCAD Proprietary data entity. More...
#include <proprietary_data.h>
Data Fields | |
int | order |
char * | line |
int | length |
struct DxfProprietaryData * | next |
DXF definition of an AutoCAD Proprietary data entity.
Definition at line 50 of file proprietary_data.h.
Incremental counter for storing order of data lines.
Definition at line 54 of file proprietary_data.h.
Referenced by dxf_3dsolid_read(), dxf_3dsolid_write(), dxf_body_read(), dxf_body_write(), dxf_proprietary_data_get_order(), and dxf_proprietary_data_set_order().
Proprietary data.
Multiple lines of 256 characters maximum per line (optional).
Group code = 1.
Definition at line 56 of file proprietary_data.h.
Referenced by dxf_3dsolid_read(), dxf_body_read(), dxf_proprietary_data_free(), dxf_proprietary_data_get_line(), dxf_proprietary_data_init(), dxf_proprietary_data_set_line(), and dxf_proprietary_data_test_length().
Length of the line of characters.
May not exceed DXF_MAX_STRING_LENGTH
.
Definition at line 61 of file proprietary_data.h.
Referenced by dxf_proprietary_data_get_length(), dxf_proprietary_data_set_length(), and dxf_proprietary_data_test_length().
Pointer to the next DxfProprietaryData.
NULL
if the last DxfProprietaryData.
Definition at line 63 of file proprietary_data.h.
Referenced by dxf_3dsolid_read(), dxf_body_read(), dxf_proprietary_data_free(), dxf_proprietary_data_free_chain(), dxf_proprietary_data_get_last(), dxf_proprietary_data_get_next(), dxf_proprietary_data_init(), and dxf_proprietary_data_set_next().