--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook2/inc/MPbk2ContactRelocatorObserver.h Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,80 @@
+/*
+* Copyright (c) 2005-2007 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: Phonebook 2 contacts relocator observer interface.
+*
+*/
+
+
+#ifndef MPBK2CONTACTRELOCATOROBSERVER_H
+#define MPBK2CONTACTRELOCATOROBSERVER_H
+
+// FORWARD DECLARATIONS
+class MVPbkStoreContact;
+class CVPbkContactLinkArray;
+
+// CLASS DECLARATION
+
+/**
+ * Phonebook 2 contacts relocator observer interface..
+ */
+class MPbk2ContactRelocatorObserver
+ {
+ public: // Interface
+
+ /**
+ * Contact has been relocated.
+ *
+ * @param aRelocatedContact The relocated contact. Observer takes
+ * ownership of the contact.
+ */
+ virtual void ContactRelocatedL(
+ MVPbkStoreContact* aRelocatedContact ) = 0;
+
+ /**
+ * Contact relocation has failed.
+ *
+ * @param aReason Error code.
+ * @param aContact The contact that was submitted for relocation.
+ * Observer takes ownership of the contact.
+ */
+ virtual void ContactRelocationFailed(
+ TInt aReason,
+ MVPbkStoreContact* aContact ) = 0;
+
+ /**
+ * Contacts relocation has failed.
+ *
+ * @param aReason Error code.
+ * @param aContact The contacts that were submitted for relocation.
+ * Observer takes ownership of the contacts.
+ */
+ virtual void ContactsRelocationFailed(
+ TInt aReason,
+ CVPbkContactLinkArray* aContacts ) = 0;
+
+ /**
+ * All contacts have been processed.
+ * The relocated contacts have been sent to the observer with
+ * ContactRelocatedL() and ContactRelocationFailed() functions.
+ */
+ virtual void RelocationProcessComplete() = 0;
+
+ protected: // Disabled functions
+ ~MPbk2ContactRelocatorObserver()
+ {}
+ };
+
+#endif // MPBK2CONTACTRELOCATOROBSERVER_H
+
+// End of File