RecurranceIDData = DataReceived.begin()->second;
}
+
+ // Process the data from SEQUENCE.
+
+ DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "SEQUENCE");
+
+ if (DataReceived.begin() != DataReceived.end()){
+
+ try {
+ SequenceTokens = DataReceived.begin()->first.substr(9);
+ }
+
+ catch(const out_of_range &oor){
+ // Do nothing as there is no data.
+ }
+
+ try {
+ SequenceData = stoi(DataReceived.begin()->second);
+ }
+
+ catch(const invalid_argument &oor){
+ SequenceTokens.clear();
+ }
+
+ }
}
\ No newline at end of file