filemanager/src/inc/fmserviceutils/private/symbian/fmserviceutilsprivate.h
changeset 46 d58987eac7e8
equal deleted inserted replaced
37:15bc28c9dd51 46:d58987eac7e8
       
     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 * 
       
    15 * Description:
       
    16 *     The header file of service utils private
       
    17 */
       
    18 
       
    19 #ifndef FMSERVICEUTILSPRIVATE_H
       
    20 #define FMSERVICEUTILSPRIVATE_H
       
    21 
       
    22 #include <QObject>
       
    23 #include <QStringList>
       
    24 
       
    25 class ShareUi;
       
    26 class CFmServiceUtilsHandler;
       
    27 
       
    28 /*!
       
    29     \class FmServiceUtilsPrivate
       
    30     \brief The class FmServiceUtilsPrivate provide service utils APIs private wrapper
       
    31 */
       
    32 class FmServiceUtilsPrivate
       
    33 {
       
    34 public:
       
    35     FmServiceUtilsPrivate();
       
    36     virtual ~FmServiceUtilsPrivate();
       
    37 
       
    38     void sendFile( const QStringList &filePath );
       
    39     void closeApps();
       
    40     void restartApps();
       
    41     
       
    42 private:
       
    43     ShareUi *shareUi();
       
    44     CFmServiceUtilsHandler *serviceUtilsHandler();
       
    45     
       
    46 private:
       
    47     // used to send files
       
    48     ShareUi *mShareUi;
       
    49     
       
    50     // used for some service utils
       
    51     CFmServiceUtilsHandler *mServiceUtilsHandler;
       
    52     
       
    53 };
       
    54 
       
    55 #endif