hi experts,
how to copy vector of Cstring to another vector of CString?
I got an strcore.cpp exception in my code when it goes to
UpdateData(const UpdateData& data) {
this->trainId = data.trainId;
this->track = data.track;
this->location = data.location;
this->rowText = data.rowText;
this->atsValid = data.atsValid;
this->communicationValid = data.communicationValid
}
specifically in rowText where its type std::vector<CString>
thanks!
how to copy vector of Cstring to another vector of CString?
I got an strcore.cpp exception in my code when it goes to
UpdateData(const UpdateData& data) {
this->trainId = data.trainId;
this->track = data.track;
this->location = data.location;
this->rowText = data.rowText;
this->atsValid = data.atsValid;
this->communicationValid = data.communicationValid
}
specifically in rowText where its type std::vector<CString>
thanks!