typedef struct DICOMRowsAndVolumn{
CString strRows;
CString strColumn;
bool operator <(const DICOMRowsAndVolumn &other) const
{
if(this->strRows==other.strRows && this->strColumn==other.strColumn) return false;
else return true;
}
}RowsAndVolumn;
//定义map
map<RowsAndVolumn,int> m_RowsAndVolumn;typedef struct DICOMRowsAndVolumn