contentstorage/casoftwareregistry/stub/inc/cauninstallnotifier_p.h
changeset 109 e0aa398e6810
child 127 7b66bc3c6dc9
equal deleted inserted replaced
104:9b022b1f357c 109:e0aa398e6810
       
     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: canotifier.h
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef CAUNINSTALLNOTIFIER_P_H
       
    19 #define CAUNINSTALLNOTIFIER_P_H
       
    20 
       
    21 #include <QObject>
       
    22 #include <QSharedPointer>
       
    23 class CaUninstallObserver;
       
    24 class CaUninstallNotifier;
       
    25 class CaSoftwareRegistry;
       
    26 
       
    27 class CaUninstallNotifierPrivate: public QObject
       
    28 {
       
    29 Q_OBJECT
       
    30 
       
    31 public:
       
    32 
       
    33     explicit CaUninstallNotifierPrivate();
       
    34 
       
    35     virtual ~CaUninstallNotifierPrivate();
       
    36     
       
    37     void makeConnect();
       
    38 
       
    39 private:
       
    40     CaUninstallObserver* mUninstallObserver;
       
    41     QSharedPointer<CaSoftwareRegistry> mCaSoftwareRegistry;
       
    42     
       
    43     const CaUninstallNotifier *m_q;
       
    44     friend class CaUninstallNotifier;
       
    45 
       
    46 };
       
    47 
       
    48 
       
    49 #endif // CAUNINSTALLNOTIFIER_P_H