libDXF 0.0.1
A library with DXF related functions written in C.
|
DXF definition of an AutoCAD dictionary object (DICTIONARY
).
More...
#include <dictionary.h>
Data Fields | |
int | id_code |
char * | dictionary_owner_soft |
char * | dictionary_owner_hard |
char * | entry_name |
char * | entry_object_handle |
struct DxfDictionary * | next |
DXF definition of an AutoCAD dictionary object (DICTIONARY
).
Definition at line 58 of file dictionary.h.
Identification number for the entity.
This is to be an unique (sequential) number in the DXF file.
Group code = 5.
Definition at line 63 of file dictionary.h.
Referenced by dxf_dictionary_get_id_code(), dxf_dictionary_read(), and dxf_dictionary_set_id_code().
Soft-pointer ID/handle to owner dictionary (optional).
Group code = 330.
Definition at line 68 of file dictionary.h.
Referenced by dxf_dictionary_get_dictionary_owner_soft(), dxf_dictionary_read(), and dxf_dictionary_set_dictionary_owner_soft().
Hard owner ID/handle to owner dictionary (optional).
Group code = 360.
Definition at line 71 of file dictionary.h.
Referenced by dxf_dictionary_get_dictionary_owner_hard(), dxf_dictionary_read(), dxf_dictionary_set_dictionary_owner_hard(), and dxf_dictionary_write().
Entry name (one for each entry).
Group code = 3.
Definition at line 75 of file dictionary.h.
Referenced by dxf_dictionary_get_entry_name(), dxf_dictionary_read(), and dxf_dictionary_set_entry_name().
Handle of entry object (one for each entry).
Group code = 350.
Definition at line 78 of file dictionary.h.
Referenced by dxf_dictionary_get_entry_object_handle(), dxf_dictionary_read(), and dxf_dictionary_set_entry_object_handle().
Pointer to the next DxfDictionary.
NULL
in the last DxfDictionary.
Definition at line 80 of file dictionary.h.
Referenced by dxf_dictionary_free(), dxf_dictionary_free_chain(), dxf_dictionary_get_last(), dxf_dictionary_get_next(), and dxf_dictionary_set_next().