filemanager/src/inc/fmserviceutils/fmserviceutils.h
changeset 46 d58987eac7e8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/filemanager/src/inc/fmserviceutils/fmserviceutils.h	Wed Sep 29 10:37:03 2010 +0800
@@ -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 <QObject>
+#include <QStringList>
+
+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