}
+ // Process the data from Description.
+
+ DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, true, "DESCRIPTION");
+
+ ObjectSeekCount = 0;
+
+ for(multimap<string,string>::iterator iter = DataReceived.begin();
+ iter != DataReceived.end();
+ ++iter){
+
+ DescriptionListTokens.push_back("");
+ DescriptionListAltRep.push_back("");
+ DescriptionListLanguage.push_back("");
+ DescriptionList.push_back("");
+
+ bool TokenData = false;
+ string PropertyTokens;
+
+ PropertyNameData = (string*)&iter->first;
+
+ PropertyData = SplitValues(*PropertyNameData);
+
+ for(map<string,string>::iterator dataiter = PropertyData.begin();
+ dataiter != PropertyData.end(); dataiter++){
+
+ if (dataiter->first == "ALTREP"){
+
+ DescriptionListAltRep[ObjectSeekCount] = dataiter->second;
+
+ } else if (dataiter->first == "LANGUAGE"){
+
+ DescriptionListLanguage[ObjectSeekCount] = dataiter->second;
+
+ } else {
+
+ if (TokenData == false){
+ TokenData = true;
+ } else {
+ PropertyTokens += ";";
+ }
+
+ PropertyTokens += dataiter->first;
+ PropertyTokens += "=";
+ PropertyTokens += dataiter->second;
+
+ }
+
+ }
+
+ if (PropertyTokens.size() > 0){
+ DescriptionListTokens[ObjectSeekCount] = PropertyTokens;
+ }
+
+ DescriptionList[ObjectSeekCount] = iter->second;
+
+ ObjectSeekCount++;
+
+ }
+
}
\ No newline at end of file