Show
Ignore:
Timestamp:
01/13/08 12:24:39 (11 months ago)
Author:
cyrusdaboo
Message:

Support address book queries on multiple fields in a single request.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Mulberry/branches/v4.1d1/Sources_Common/HTTP/CardDAVClient/CCardDAVQueryReport.h

    r148 r149  
    3737{ 
    3838public: 
    39         CCardDAVQueryReport(CWebDAVSession* session, const cdstring& ruri, const cdstring& search_prop, const cdstring& search_text, const cdstring& match_type); 
     39        CCardDAVQueryReport(CWebDAVSession* session, const cdstring& ruri, const cdstrvect& search_props, const cdstring& search_text, const cdstring& match_type); 
    4040        virtual ~CCardDAVQueryReport(); 
    4141 
    4242protected: 
    43         void    InitRequestData(const cdstring& search_prop, const cdstring& search_text, const cdstring& match_type); 
     43        void    InitRequestData(const cdstrvect& search_props, const cdstring& search_text, const cdstring& match_type); 
    4444         
    45         void    GenerateXML(std::ostream& os, const cdstring& search_prop, const cdstring& search_text, const cdstring& match_type); 
     45        void    GenerateXML(std::ostream& os, const cdstrvect& search_props, const cdstring& search_text, const cdstring& match_type); 
    4646}; 
    4747