taskswitcherapp/tsserviceplugin/inc/win/tsexternalactivationwatcher_p.h
changeset 36 cdae8c6c3876
equal deleted inserted replaced
35:f9ce957a272c 36:cdae8c6c3876
       
     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 * Description:
       
    15 *
       
    16 */
       
    17 #ifndef TSEXTERNALACTIVATIONWATCHERPRIVATE_H
       
    18 #define TSEXTERNALACTIVATIONWATCHERPRIVATE_H
       
    19 
       
    20 #include <QObject>
       
    21 #include <qmobilityglobal.h>
       
    22 
       
    23 QTM_BEGIN_NAMESPACE
       
    24     class QValueSpacePublisher;
       
    25     class QValueSpaceSubscriber;
       
    26 QTM_END_NAMESPACE
       
    27 
       
    28 QTM_USE_NAMESPACE
       
    29     
       
    30 class TsExternalActivationWatcherPrivate : public QObject
       
    31 {
       
    32     Q_OBJECT
       
    33 
       
    34 public:
       
    35     TsExternalActivationWatcherPrivate(QObject *parent);
       
    36 
       
    37 private slots:
       
    38     void checkActivationFlag();
       
    39     
       
    40 signals:
       
    41     void activationRequested();
       
    42 
       
    43 private:
       
    44     QValueSpacePublisher *mPublisher;
       
    45     QValueSpaceSubscriber *mSubscriber;
       
    46     
       
    47 };
       
    48 
       
    49 #endif // TSEXTERNALACTIVATIONWATCHERPRIVATE_H