diff -r 22e202702210 -r 1bebd60c0f00 filemanager/src/inc/fmserviceutils/fmserviceutils.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/filemanager/src/inc/fmserviceutils/fmserviceutils.h Mon Oct 04 00:06:46 2010 +0300 @@ -0,0 +1,48 @@ +/* +* 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: +* The header file of service utils +*/ + +#ifndef FMSERVICEUTILS_H +#define FMSERVICEUTILS_H + +#include +#include + +class FmServiceUtilsPrivate; + +/*! + \class FmServiceUtils + \brief The class FmServiceUtils provide some service utils APIs + As FmUtils provide static APIs, FmServiceUtils provide non-static APIs +*/ +class FmServiceUtils : public QObject +{ +Q_OBJECT +public: + FmServiceUtils( QObject *parent = 0 ); + virtual ~FmServiceUtils(); + void sendFile( const QStringList &filePathList ); + + void closeApps(); + void restartApps(); + +private: + FmServiceUtilsPrivate *d; +}; + + +#endif