filemanager/src/inc/fmserviceutils/fmserviceutils.h
changeset 48 1bebd60c0f00
equal deleted inserted replaced
44:22e202702210 48:1bebd60c0f00
       
     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
       
    17 */
       
    18 
       
    19 #ifndef FMSERVICEUTILS_H
       
    20 #define FMSERVICEUTILS_H
       
    21 
       
    22 #include <QObject>
       
    23 #include <QStringList>
       
    24 
       
    25 class FmServiceUtilsPrivate;
       
    26 
       
    27 /*!
       
    28     \class FmServiceUtils 
       
    29     \brief The class FmServiceUtils provide some service utils APIs
       
    30     As FmUtils provide static APIs, FmServiceUtils provide non-static APIs
       
    31 */
       
    32 class FmServiceUtils : public QObject
       
    33 {
       
    34 Q_OBJECT
       
    35 public:
       
    36     FmServiceUtils( QObject *parent = 0 );
       
    37     virtual ~FmServiceUtils();
       
    38     void sendFile( const QStringList &filePathList );
       
    39     
       
    40     void closeApps();
       
    41     void restartApps();
       
    42 
       
    43 private:
       
    44     FmServiceUtilsPrivate *d;
       
    45 };
       
    46 
       
    47 
       
    48 #endif