videocollection/tsrc/stubs/inc/videooperatorservicedata.h
changeset 52 e3cecb93e76a
child 55 4bfa887905cf
equal deleted inserted replaced
47:45e72b57a2fd 52:e3cecb93e76a
       
     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: stub videooperatorservicedata
       
    15 * 
       
    16 */
       
    17 
       
    18 #ifndef VIDEOOPERATORSERVICEDATA_H
       
    19 #define VIDEOOPERATORSERVICEDATA_H
       
    20 
       
    21 #include <qlist.h>
       
    22 #include <qstring.h>
       
    23 
       
    24 class VideoOperatorServiceData
       
    25 {
       
    26 public: // methods
       
    27     static void reset()
       
    28     {
       
    29         mTitles.clear();
       
    30         mIcons.clear();
       
    31         mUris.clear();
       
    32         mUids.clear();
       
    33         
       
    34         mTitleCallCount = 0;
       
    35         mIconResourceCallCount = 0;
       
    36         mLaunchServiceCallCount = 0;
       
    37         mLaunchApplicationLCallCount = 0;
       
    38     }
       
    39     
       
    40 public: // data
       
    41     static QList<QString> mTitles;
       
    42     static QList<QString> mIcons;
       
    43     static QList<QString> mUris;
       
    44     static QList<int> mUids;
       
    45     
       
    46     static bool loadReturnValue;
       
    47     
       
    48     static int mLoadCallCount;
       
    49     static int mTitleCallCount;
       
    50     static int mIconResourceCallCount;
       
    51     static int mLaunchServiceCallCount;
       
    52     static int mLaunchApplicationLCallCount;
       
    53 };
       
    54 
       
    55 #endif /* VIDEOOPERATORSERVICEDATA_H */