Definition at line 38 of file Array2d.h. References mDataType, mDataVec2Real64, mDataVec3Real64, and mDataVec3UInt8. 00038 : mDataType(src.mDataType), mDataVec3Real64(0), mDataVec3UInt8(0), mDataVec2Real64(0) 00039 { 00040 switch (mDataType) { 00041 case 0: 00042 mDataVec3UInt8 = new Array2dVec3UInt8(*(src.mDataVec3UInt8)); 00043 break; 00044 case 2: 00045 mDataVec3Real64 = new Array2dVec3Real64(*(src.mDataVec3Real64)); 00046 break; 00047 case 3: 00048 mDataVec2Real64 = new Array2dVec2Real64(*(src.mDataVec2Real64)); 00049 break; 00050 } 00051 }
|