mediator/src/clientstub/mediatorcommandresponderstub.cpp
changeset 0 4e1aa6a622a0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mediator/src/clientstub/mediatorcommandresponderstub.cpp	Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,130 @@
+/*
+* Copyright (c) 2006 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:  A stub implementation of an interface for responding to Mediator Service commands.
+*
+*/
+
+
+
+// INCLUDE FILES
+#include    <e32base.h>
+#include    "MediatorCommandResponder.h"
+#include    "MediatorCommandResponderBody.h"
+#include    "Debug.h"
+
+
+// ============================ MEMBER FUNCTIONS ===============================
+
+// -----------------------------------------------------------------------------
+// CMediatorCommandResponder::CMediatorCommandResponder
+// -----------------------------------------------------------------------------
+//
+CMediatorCommandResponder::CMediatorCommandResponder( )
+    {
+    }
+
+// -----------------------------------------------------------------------------
+// CMediatorCommandResponder::ConstructL
+// -----------------------------------------------------------------------------
+//
+void CMediatorCommandResponder::ConstructL( MMediatorCommandObserver* /*aObserver*/ )
+    {
+    }
+
+// -----------------------------------------------------------------------------
+// CMediatorCommandResponder::NewL
+// -----------------------------------------------------------------------------
+//
+EXPORT_C CMediatorCommandResponder* CMediatorCommandResponder::NewL( MMediatorCommandObserver* aObserver )
+    {
+    CMediatorCommandResponder* self = new( ELeave ) CMediatorCommandResponder( );
+    
+    CleanupStack::PushL( self );
+    self->ConstructL( aObserver );
+    CleanupStack::Pop( self );
+
+    return self;
+    }
+
+// -----------------------------------------------------------------------------
+// CMediatorCommandResponder::~CMediatorCommandResponder
+// -----------------------------------------------------------------------------
+//
+CMediatorCommandResponder::~CMediatorCommandResponder()
+    {
+    }
+
+    
+// -----------------------------------------------------------------------------
+// CMediatorCommandResponder::RegisterCommand
+// -----------------------------------------------------------------------------
+//
+EXPORT_C TInt CMediatorCommandResponder::RegisterCommand( 
+                                        TUid /*aDomain*/,
+                                        TUid /*aCategory*/, 
+                                        const RCommandList& /*aCommands*/ )
+    {
+    return KErrNotSupported;
+    }
+
+// -----------------------------------------------------------------------------
+// CMediatorCommandResponder::RegisterCommand
+// -----------------------------------------------------------------------------
+//        
+EXPORT_C TInt CMediatorCommandResponder::RegisterCommand( TUid /*aDomain*/, 
+                                                          TUid /*aCategory*/, 
+                                                          TInt /*aCommandId*/, 
+                                                          TVersion /*aVersion*/,
+                                                          TCapabilitySet /*aCaps*/, 
+                                                          TInt /*aTimeOut*/ )
+    {
+    return KErrNotSupported;
+    }
+
+// -----------------------------------------------------------------------------
+// CMediatorCommandResponder::UnregisterCommand
+// -----------------------------------------------------------------------------
+//        
+EXPORT_C TInt CMediatorCommandResponder::UnregisterCommand( 
+                                            TUid /*aDomain*/, 
+                                            TUid /*aCategory*/,
+                                            const RCommandList& /*aCommands*/ )
+    {
+    return KErrNotSupported;
+    }
+
+// -----------------------------------------------------------------------------
+// CMediatorCommandResponder::UnregisterCommand
+// -----------------------------------------------------------------------------
+//        
+EXPORT_C TInt CMediatorCommandResponder::UnregisterCommand( 
+                                         TUid /*aDomain*/, 
+                                         TUid /*aCategory*/, 
+                                         TInt /*aCommandId*/ )
+    {
+    return KErrNotSupported;
+    }
+
+// -----------------------------------------------------------------------------
+// CMediatorCommandResponder::IssueResponse
+// -----------------------------------------------------------------------------
+//        
+EXPORT_C TInt CMediatorCommandResponder::IssueResponse( TUid /*aDomain*/,
+                                                        TUid /*aCategory*/, 
+                                                        TInt /*aCommandId*/,
+                                                        TInt /*aStatus*/, 
+                                                        const TDesC8& /*aData*/ )
+    {
+    return KErrNotSupported;
+    }