void CalendarTimezoneObject::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, "TZID");
+
+ // Process the data from DTSTAMP.
+
+ if (DataReceived.begin() != DataReceived.end()){
+
+ try {
+ TimeZoneDataTokens = DataReceived.begin()->first.substr(5);
+ }
+
+ catch(const out_of_range &oor){
+ // Do nothing as there is no data.
+ }
+
+ TimeZoneData = DataReceived.begin()->second;
+
+ }
}
\ No newline at end of file