smf/smfservermodule/smfclient/client/smfcontactfetcher.h
changeset 14 a469c0e6e7fb
parent 10 77a56c951f86
--- a/smf/smfservermodule/smfclient/client/smfcontactfetcher.h	Mon Jun 07 11:43:45 2010 +0100
+++ b/smf/smfservermodule/smfclient/client/smfcontactfetcher.h	Wed Jun 23 19:51:49 2010 +0530
@@ -30,7 +30,6 @@
 class SmfProvider; //base-class for service provider
 class SmfContact; //class for Contact in a social network
 class SmfGroup; //class for a group in social network
-class SmfContactFetcherPrivate;
 
 typedef QList<SmfContact>  SmfContactList;
 typedef QList<SmfGroup> SmfGroupList;
@@ -59,7 +58,7 @@
    * @param parent base provider info
    * @param contact Used for searching friends of the given contact
    * Seeing as this is a plug-in implementation, these will realistically
-   * be generated by SMF factory of some kind
+   * be generated by SMF factory of some kind
    */
   SmfContactFetcher(SmfProvider* baseProvider);
   SmfContactFetcher(SmfProvider* baseProvider, SmfContact* contact);
@@ -93,7 +92,7 @@
    * When the list is big user can specify the page number and per page item data.
    * If not supplied by the user default values are used.
    * @param pageNum Page number to download, SMF_FIRST_PAGE denotes fresh query.
-   * @param perPage Item per page, default is SMF_ITEMS_PER_PAGE
+   * @param perPage Item per page, default is SMF_ITEMS_PER_PAGE
    */
   void search(SmfContact* contact,int pageNum=SMF_FIRST_PAGE,int perPage=SMF_ITEMS_PER_PAGE) ; // list of contact objects
 
@@ -136,14 +135,14 @@
     * @param customData Custom data to be sent
     * Note:-Interpretation of operationId and customData is upto the concerned
     * plugin and client application. service provider should provide some
-    * serializing-deserializing utilities for these custom data
+    * serializing-deserializing utilities for these custom data
     */
    void customRequest(const int& operationId,QByteArray* customData);
 
   //APIs to get/set base provider info (SmfProvider)
 
   /**
-   * Gets the base provider info
+   * Gets the base provider info
    */
    SmfProvider* getProvider() ;
 
@@ -156,7 +155,7 @@
 	 *  @param list list of friends
 	 *  @param error error value
 	 *  @param resultPage Page number info
-	 *  @see friends()
+	 *  @see friends()
 	 */
 	void friendsListAvailable(SmfContactList* list, SmfError error, SmfResultPage resultPage);
 
@@ -188,7 +187,7 @@
 	 * In that case this signal is emitted multiple times.
 	 * @param list List of filtered contacts
 	 * @param resultPage Page number info
-	 * @see search()
+	 * @see search()
 	 */
 	void searchContactFinished(SmfContactList* list,SmfError error, SmfResultPage resultPage);
 
@@ -216,7 +215,7 @@
 	/**
 	 * Emitted when custom data is available
 	 * @param operationId Requested operation id
-	 * @param customData Custom data received, interpretation is not the responsibility of Smf
+	 * @param customData Custom data received, interpretation is not the responsibility of Smf
 	 */
 	void customDataAvailable(int operationId, QByteArray* customData);
 	//so that private impl can directly call emit