srsf/vcommandmanager/src/vcommandmerger.cpp
branchRCL_3
changeset 18 cad71a31b7fc
parent 17 8ce15fced3a6
child 19 e36f3802f733
--- a/srsf/vcommandmanager/src/vcommandmerger.cpp	Thu Aug 19 09:56:14 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,55 +0,0 @@
-/*
-* Copyright (c) 2005-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:  VCommandManager application which is started during boot. 
-*
-*/
-
-
-// INCLUDE FILES
-#include "rubydebug.h"
-#include "vcommandmerger.h"
-// For CleanupResetAndDestroyPushL
-//#include <mmfcontrollerpluginresolver.h> 
-
-CVCommandMerger* CVCommandMerger::NewLC()
-    {
-    CVCommandMerger* self = new (ELeave) CVCommandMerger;
-    CleanupStack::PushL( self );
-    return self;
-    }
-
-/** 
- * @todo Move the internal member comparisons to the primitive classes
- */
-
-// Returns the array of commands from aTarget that have counterparts
-// in aInjection with the equal Runnable, but with different spoken text or UI
-// Difference in user texts only does not count
-CVCommandArray* CVCommandMerger::ProduceDeductionByRunnablesLC( const CVCommandArray& aTarget, 
-                                                          const RVCommandArray& aInjection ) const
-    {
-    return aTarget.ProduceUntrainSetByRunnablesLC( aInjection );;
-    }                                                                    
-                                       
-// Returns the array of commands from aInjection that have 
-// counterparts in aTarget with the equal Runnable, but with different spoken text or UI
-// Difference in user texts only does not count
-CVCommandArray* CVCommandMerger::ProduceAdditionByRunnablesLC( const CVCommandArray& aTarget, 
-                                                     const RVCommandArray& aInjection ) const
-    {
-    return aTarget.ProduceTrainSetByRunnablesLC( aInjection );
-    }                                                                    
-
-// End of File
-