}
- // Get the Class value.
+ // Process the data from CLASS.
DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "CLASS");
}
+ // Process the data from CREATED.
+
+ DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "CREATED");
+
+ if (DataReceived.begin() != DataReceived.end()){
+
+ try {
+ DateTimeCreatedTokens = DataReceived.begin()->first.substr(8);
+ }
+
+ catch(const out_of_range &oor){
+ // Do nothing as there is no data.
+ }
+
+ DateTimeCreatedData = DataReceived.begin()->second;
+
+ }
+
}