diff -r dec420019252 -r cf5481c2bc0b videocollection/videocollectionwrapper/tsrc/testvideomodel/stub/inc/videocollectionclient.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/videocollection/videocollectionwrapper/tsrc/testvideomodel/stub/inc/videocollectionclient.h Fri Apr 16 14:59:52 2010 +0300 @@ -0,0 +1,86 @@ + + +/* +* 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: stubclass of videocollection for testing VideoListDataModel class methods* +*/ + +#ifndef __VIDEOCOLLECTIONCLIENT_H +#define __VIDEOCOLLECTIONCLIENT_H + +#include +#include + + +class VideoDataSignalReceiver; + + +class VideoCollectionClient +{ + +public: // Constructors and destructor + + /** + * constructor. + */ + VideoCollectionClient(); + + /** + * Destructor. + */ + virtual ~VideoCollectionClient(); + + /** + * dummy impl + */ + int initialize( VideoDataSignalReceiver* signalReceiver); + + /** + * return 0 always, increases global counter by one + * + * @param TMPXItemId not used + * + * @return 0 + */ + int deleteVideos( QList *ids ); + + /** + * returns mRemoveItemsReturn + */ + int removeItemsFromAlbum(TMPXItemId &albumId, const QList &items); + + /** + * if true, initializate fails + */ + static bool mFailInitialize; + + /** + * if true, connectCollectionSignalReceiver fails + */ + static bool mFailConnectSignals ; + + /** + * count of initialize -calls + */ + static int mInitializeCount; + + /** + * returned from removeItemsFromAlbum + */ + static int mRemoveItemsReturn; + + +}; + +#endif // __VIDEOCOLLECTIONCLIENT_H