filemanager/src/inc/fmserviceutils/private/win32/fmserviceutilsprivate.h
changeset 47 12b82dc0e8db
child 49 81668a704644
equal deleted inserted replaced
40:4167eb56f30d 47:12b82dc0e8db
       
     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 for win32 wrapper
       
    17 */
       
    18 
       
    19 #ifndef FMSERVICEUTILSPRIVATE_H
       
    20 #define FMSERVICEUTILSPRIVATE_H
       
    21 
       
    22 #include <QStringList>
       
    23 #include <QVariant>
       
    24 #include <QVariantHash>
       
    25 
       
    26 class FmServiceUtilsPrivate
       
    27 {
       
    28 public:
       
    29     FmServiceUtilsPrivate();
       
    30     virtual ~FmServiceUtilsPrivate();
       
    31 
       
    32     void sendFile( const QStringList &filePathList );
       
    33     void closeApps();
       
    34     void restartApps();
       
    35     
       
    36     // activity implement
       
    37     bool saveActivity(const QString &activityId, const QVariant &activityData, const QVariantHash &metadata);
       
    38     bool removeActivity(const QString &activityId);
       
    39 };
       
    40 
       
    41 #endif