videocollection/videocollectionview/tsrc/testvideooperatorservice_p/stub/inc/apgclistub.h
changeset 55 4bfa887905cf
equal deleted inserted replaced
50:21fe8338c6bf 55:4bfa887905cf
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 * 
       
    16 */
       
    17 
       
    18 #ifndef __APGCLI_H__
       
    19 #define __APGCLI_H__
       
    20 
       
    21 #include <e32base.h>
       
    22 #include "apaidstub.h" 
       
    23 
       
    24 class RApaLsSession : public RSessionBase
       
    25     {
       
    26 public:
       
    27 
       
    28 public: 
       
    29     RApaLsSession() {}
       
    30 
       
    31     TInt GetAppInfo(TApaAppInfo& aInfo, TUid /*aAppUid*/) const
       
    32         {
       
    33         aInfo.iFullName = mFileName;
       
    34         mGetAppInfoCallCount++;
       
    35         return 0;
       
    36         }
       
    37   
       
    38     TInt Connect() { return 0; }
       
    39     void Close() {}
       
    40     
       
    41     static TFileName mFileName;
       
    42     static TInt mGetAppInfoCallCount;
       
    43     };
       
    44 
       
    45 #endif  // __APGCLI_H__