1 // Copyright (c) 2004-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #ifndef REMCONCOREAPICONTROLLEROBSERVER_H
25 #define REMCONCOREAPICONTROLLEROBSERVER_H
28 #include <remconcoreapi.h>
31 Clients must implement this interface in order to instantiate objects of type
32 CRemConCoreApiController. This interface passes incoming responses from RemCon
34 In order to minimise the number of virtual functions the client has to
35 implement, there's just one non-pure function which delivers all responses.
37 class MRemConCoreApiControllerObserver
41 A response has been received.
42 @param aOperationId The operation ID. The response is to a previous
44 @param The response error.
46 virtual void MrccacoResponse(TRemConCoreApiOperationId aOperationId, TInt aError);
49 #endif // REMCONCOREAPICONTROLLEROBSERVER_H