localisation/apparchitecture/tef/TRApaLsSessionStartAppTestRecognizer.cpp
branchSymbian3
changeset 57 b8d18c84f71c
parent 6 c108117318cb
equal deleted inserted replaced
56:aa99f2208aad 57:b8d18c84f71c
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Eclipse Public License v1.0"
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     7 //
     8 // Initial Contributors:
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
     9 // Nokia Corporation - initial contribution.
    19 // This enables the start app test case T_RApaLsSessionStep.CPP to launch TRApaLsSessionStartAppTestApp.app
    19 // This enables the start app test case T_RApaLsSessionStep.CPP to launch TRApaLsSessionStartAppTestApp.app
    20 // by starting the document KLitTRApaLsSessionStartAppTest.
    20 // by starting the document KLitTRApaLsSessionStartAppTest.
    21 // 
    21 // 
    22 //
    22 //
    23 
    23 
    24 
       
    25 
       
    26 /**
    24 /**
    27  @file
    25  @file
    28  @internalComponent - Internal Symbian test code
    26  @internalComponent - Internal Symbian test code
    29 */
    27 */
    30 
    28 
    31 #include <E32STD.H>
    29 #include <e32std.h>
    32 #include <E32BASE.H>
    30 #include <e32base.h>
    33 #include <APMSTD.H>
    31 #include <apmstd.h>
    34 #include <APMREC.H>
    32 #include <apmrec.h>
    35 #include "TRApaLsSessionStartAppTest.h"
    33 #include "TRApaLsSessionStartAppTest.h"
    36 
    34 
    37 #include <ImplementationProxy.h>
    35 #include <ecom/implementationproxy.h>
    38 
    36 
    39 //CRApaLsSessionStartAppTestRec
    37 //CRApaLsSessionStartAppTestRec
    40 
    38 
    41 class CRApaLsSessionStartAppTestRec : public CApaDataRecognizerType
    39 class CRApaLsSessionStartAppTestRec : public CApaDataRecognizerType
    42 	{
    40 	{
    97 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    95 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    98     {
    96     {
    99     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
    97     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   100     return ImplementationTable;
    98     return ImplementationTable;
   101     }
    99     }
       
   100