libDXF 0.0.1
A library with DXF related functions written in C.
|
00001 00035 #ifndef LIBDXF_SRC_FILE_H 00036 #define LIBDXF_SRC_FILE_H 00037 00038 00039 #include <stdio.h> 00040 #include "block.h" 00041 #include "global.h" 00042 #include "class.h" 00043 #include "entities.h" 00044 #include "header.h" 00045 #include "object.h" 00046 #include "section.h" 00047 #include "table.h" 00048 #include "thumbnail.h" 00049 #include "util.h" 00050 00051 00052 #ifdef __cplusplus 00053 extern "C" { 00054 #endif 00055 00056 00057 int 00058 dxf_file_read (char *filename); 00059 int 00060 dxf_file_write (DxfFile *fp, DxfHeader dxf_header, DxfClass dxf_classes_list, DxfTable dxf_tables_list); 00061 int 00062 dxf_file_write_eof (DxfFile *fp); 00063 00064 00065 #ifdef __cplusplus 00066 } 00067 #endif 00068 00069 00070 #endif /* LIBDXF_SRC_FILE_H */ 00071 00072 00073 /* EOF */