videocollection/videocollectionview/tsrc/testvideocollectionviewutils/stubs/inc/centralrepository.h
changeset 55 4bfa887905cf
parent 50 21fe8338c6bf
child 58 d2b028fd1f7d
--- a/videocollection/videocollectionview/tsrc/testvideocollectionviewutils/stubs/inc/centralrepository.h	Fri Aug 06 09:43:48 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,93 +0,0 @@
-/*
-* Copyright (c) 2009 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:  stub central repository -class for testing CVideoCollectionClient
-* 
-*/
-
-#ifndef __CENTRALREPOSITORY_H__
-#define __CENTRALREPOSITORY_H__
-
-#include <e32base.h>
-#include <qmap.h>
-
-class CRepository 
-{
-public:
-    
-    /**
-     * sets gCRNewLLeave
-     */
-    static void setNewLLeave(bool leave);
-    
-    /**
-     * sets gCRSetFail
-     */
-    static void setSetFail(int amount);
-    
-    /**
-     * sets gCRGetFail
-     */
-    static void setGetFail(int amount);
-     
-    /**
-     * gets gSettedTDesValue;
-     */
-    static TDesC& getTDesValue();
-     
-    /**
-     * sets gSettedTDesValue;
-     */
-    static void setTDesValue(const TDesC& value);
-    
-    
-    static QMap<uint, int> mSortValues;
-
-    /**
-     * if gCRNewLLeave is true, will leave
-     * if gCRNewLLeave is false returns new CRepository
-     */
-    static CRepository* NewL(TUid aRepositoryUid);
-
-    /**
-     * contructor
-     */
-    CRepository();
-    
-    /**
-     * destructor
-     */
-    virtual ~CRepository();
-    
-    /**
-     * if gCRGetFail is true, returns KErrGeneral
-     * if gCRGetFail is false, returns gSettedValue and returns KErrNone
-     */
-    TInt Get(TUint32 aKey, TInt& aValue);
-
-    /**
-     * if gCRSetFail is true, returns KErrGeneral
-     * if gCRSetFail is false, saves value to gSettedValue and returns KErrNone
-     */
-    TInt Set(TUint32 aKey, TInt aValue);
-    
-    /**
-     * if gCRGetFail is true, returns KErrGeneral
-     * if gCRGetFail is false, returns gSettedValue and returns KErrNone
-     */
-    TInt Get(TUint32 aKey, TDes& aValue);
-
-
-};
-
-#endif // __CENTRALREPOSITORY_H__