(root)/
libredwg-0.13/
test/
unit-testing/
pointpath.c
       1  // TODO DEBUGGING
       2  #define DWG_TYPE DWG_TYPE_POINTPATH
       3  #include "common.c"
       4  
       5  void
       6  api_process (dwg_object *obj)
       7  {
       8    int error;
       9    BITCODE_BS class_version;
      10    BITCODE_3BD point;
      11  
      12    Dwg_Version_Type dwg_version = obj->parent->header.version;
      13  #ifdef DEBUG_CLASSES
      14    dwg_obj_pointpath *_obj = dwg_object_to_POINTPATH (obj);
      15  
      16    CHK_ENTITY_TYPE (_obj, POINTPATH, class_version, BS);
      17    CHK_ENTITY_MAX (_obj, POINTPATH, class_version, BS, 3);
      18    CHK_ENTITY_3RD (_obj, POINTPATH, point);
      19  #endif
      20  }