void CalendarTaskObject::ProcessData(){
+ // Process the data.
+
+ multimap<string,string> DataReceived;
+ map<string,string> PropertyData;
+ string *PropertyNameData = nullptr;
+ int ObjectSeekCount = 0;
+
+ // Get the Date Time Stamp (DTSTAMP).
+
+ DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "DTSTAMP");
+
+ // Process the data from DTSTAMP.
+
+ if (DataReceived.begin() != DataReceived.end()){
+
+ try {
+ DateTimeStampTokens = DataReceived.begin()->first.substr(8);
+ }
+
+ catch(const out_of_range &oor){
+ // Do nothing as there is no data.
+ }
+
+ DateTimeStampData = DataReceived.begin()->second;
+
+ }
+
}
\ No newline at end of file