Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
23 #ifndef MSYNCCISUPPORT_H
24 #define MSYNCCISUPPORT_H
27 #include <a3f/a3fbase.h>
29 const TUid KUidExtensionInferface = { 0x1028348B };
32 * An interface to get notifications from Custom Interface state change.
34 class MCustomInterfaceSupportObserver
38 * Called to state that CI is being removed use depends on which type of CI is involved.
39 * @param aUid the Uid of the CI.
41 * @param aPtr on returns contains a pointer to the CI.
43 virtual void CustomInterfaceRemoval(TUid aInterfaceUid, TAny* aPtr) = 0;
48 * An interface to get Custom Interface.
50 class MCustomInterfaceSupport
54 * Request custom interface associated with aUid.
55 * Whether multiple calls returns the same pointer and/or
56 * ownership is transferred depends on the specific uid.
58 * @param aUid the Uid of the CI .
59 * @param aPtr on returns contains a pointer to the CI.
61 virtual TInt RequestCustomInterface(TUid aUid, TAny*& aPtr) = 0;
64 * Registers an interface support observer.
66 * The observer will be notified when the custom interface has been removed .
68 * @param aObserver the observer reference to register.
69 * @return An error code. KErrNone on success, otherwise one of the system wide error codes.
71 virtual TInt RegisterObserver(MCustomInterfaceSupportObserver& aObserver) = 0;
74 * Unregisters an interface support observer.
76 * @param aObserver the observer reference to unregister.
77 * @return An error code. KErrNone on success, otherwise one of the system wide error codes.
79 virtual void UnRegisterObserver(MCustomInterfaceSupportObserver& aObserver) = 0;
82 #endif // MSYNCCISUPPORT_H