Lines Matching refs:pE

847 	DXFBasicEntity * pE, * * ppSucc;  in Read()  local
859 if (strcmp(rDGR.GetS(),"LINE" )==0) pE=new DXFLineEntity; in Read()
860 else if (strcmp(rDGR.GetS(),"POINT" )==0) pE=new DXFPointEntity; in Read()
861 else if (strcmp(rDGR.GetS(),"CIRCLE" )==0) pE=new DXFCircleEntity; in Read()
862 else if (strcmp(rDGR.GetS(),"ARC" )==0) pE=new DXFArcEntity; in Read()
863 else if (strcmp(rDGR.GetS(),"TRACE" )==0) pE=new DXFTraceEntity; in Read()
864 else if (strcmp(rDGR.GetS(),"SOLID" )==0) pE=new DXFSolidEntity; in Read()
865 else if (strcmp(rDGR.GetS(),"TEXT" )==0) pE=new DXFTextEntity; in Read()
866 else if (strcmp(rDGR.GetS(),"SHAPE" )==0) pE=new DXFShapeEntity; in Read()
867 else if (strcmp(rDGR.GetS(),"INSERT" )==0) pE=new DXFInsertEntity; in Read()
868 else if (strcmp(rDGR.GetS(),"ATTDEF" )==0) pE=new DXFAttDefEntity; in Read()
869 else if (strcmp(rDGR.GetS(),"ATTRIB" )==0) pE=new DXFAttribEntity; in Read()
870 else if (strcmp(rDGR.GetS(),"POLYLINE" )==0) pE=new DXFPolyLineEntity; in Read()
871 else if (strcmp(rDGR.GetS(),"LWPOLYLINE")==0) pE=new DXFLWPolyLineEntity; in Read()
872 else if (strcmp(rDGR.GetS(),"VERTEX" )==0) pE=new DXFVertexEntity; in Read()
873 else if (strcmp(rDGR.GetS(),"SEQEND" )==0) pE=new DXFSeqEndEntity; in Read()
874 else if (strcmp(rDGR.GetS(),"3DFACE" )==0) pE=new DXF3DFaceEntity; in Read()
875 else if (strcmp(rDGR.GetS(),"DIMENSION" )==0) pE=new DXFDimensionEntity; in Read()
876 else if (strcmp(rDGR.GetS(),"HATCH" )==0) pE=new DXFHatchEntity; in Read()
884 *ppSucc=pE; in Read()
885 ppSucc=&(pE->pSucc); in Read()
886 pE->Read(rDGR); in Read()