X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fcontacteditor%2FContactDataObject.h;h=a5c1fbb09658be8ce40751602642809c5e95d7b1;hb=c34383734a0f334101c9cf0b36297696e4be19a5;hp=0c788ddfc029b4ca90659c122ecb3ab9847c1c2c;hpb=db50ff1e15d18ad7e4451279f91086cc4d6050c5;p=xestiaab%2F.git diff --git a/source/contacteditor/ContactDataObject.h b/source/contacteditor/ContactDataObject.h index 0c788dd..a5c1fbb 100644 --- a/source/contacteditor/ContactDataObject.h +++ b/source/contacteditor/ContactDataObject.h @@ -55,11 +55,13 @@ class ContactDataObject{ private: void ProcessKind(wxString KindData); + void ProcessRevision(wxString PropertySeg1, wxString PropertySeg2); void ProcessSource(wxString PropertySeg1, wxString PropertySeg2, int *SourceCount); void ProcessXML(wxString PropertySeg1, wxString PropertySeg2, int *XMLCount); void ProcessMember(wxString PropertySeg1, wxString PropertySeg2, int *GroupCount); void ProcessFN(wxString PropertySeg1, wxString PropertySeg2, int *FNCount); void ProcessN(wxString PropertySeg1, wxString PropertySeg2); + void ProcessClientPIDMap(wxString PropertySeg1, wxString PropertySeg2, int *ClientPIDCount); void ProcessNickname(wxString PropertySeg1, wxString PropertySeg2, int *NicknameCount); void ProcessGender(wxString PropertySeg1, wxString PropertySeg2); void ProcessBirthday(wxString PropertySeg1, wxString PropertySeg2); @@ -118,6 +120,8 @@ class ContactDataObject{ wxString GenderTokens; wxString UIDToken; + wxString Revision; + wxString RevisionTokens; std::map SourceList; std::map SourceListAltID; @@ -130,6 +134,9 @@ class ContactDataObject{ std::map XMLList; std::map XMLListAltID; + std::map ClientPIDList; + std::map ClientPIDListTokens; + /* We don't use these at the moment but we want to keep them for compatability reasons */ @@ -611,4 +618,22 @@ void CheckType(wxString *PropertySeg1, int *intPrevValue, PropertyType *intType); +void ProcessIntegerValue(wxString *PropertyName, + wxString PropertyNameMatch, + std::map *PrefPtr, + wxString *PropertyValue, + int *ItemCount, + bool *PropertyMatched); + +void ProcessIntegerValue(std::map *PrefPtr, + wxString *PropertyValue, + int *ItemCount); + +void ProcessStringValue(wxString *PropertyName, + wxString PropertyNameMatch, + std::map *MapPtr, + wxString *PropertyValue, + int *ItemCount, + bool *PropertyMatched); + #endif \ No newline at end of file