contentctrl_plat/adapter_customization_api/inc/MContactsModsFetcher.h
branchRCL_3
changeset 52 4f0867e42d62
parent 14 b922b9936679
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/contentctrl_plat/adapter_customization_api/inc/MContactsModsFetcher.h	Wed Sep 01 12:30:02 2010 +0100
@@ -0,0 +1,53 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  DS contacts dataprovider.
+*
+*/
+
+#ifndef MCONTACTSMODSFETCHER_H
+#define MCONTACTSMODSFETCHER_H
+
+//  EXTERNAL INCLUDES
+#include <e32def.h>
+
+
+//  CLASS DEFINITION
+/**
+ * Interface class for Contacts mods fetcher
+ * @since 3.23
+ */
+class MContactsModsFetcher
+    {
+    public:     // Destructor
+
+        virtual ~MContactsModsFetcher() {}
+
+    public:     // Abstract methods
+
+        /**
+        * Cancels the current asynchronous request
+        */
+        virtual void CancelRequest( ) = 0;
+
+        /**
+        * Reads all modifications from clients contacts databse.
+        * @param aStatus  On completion of the operation, contains the result code.
+        */
+        virtual void FetchModificationsL( TRequestStatus& aStatus ) = 0;
+
+    };
+
+#endif      //  MCONTACTSMODSFETCHER_H
+
+// End of file