contentstorage/casoftwareregistry/s60/inc/cauninstallnotifier_p.h
changeset 107 b34d53f6acdf
child 127 7b66bc3c6dc9
equal deleted inserted replaced
106:e78d6e055a5b 107:b34d53f6acdf
       
     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 CCaProgresScanner;
       
    25 class CaUninstallNotifier;
       
    26 class CaSoftwareRegistry;
       
    27 
       
    28 class CaUninstallNotifierPrivate: public QObject
       
    29 {
       
    30 Q_OBJECT
       
    31 
       
    32 public:
       
    33 
       
    34     explicit CaUninstallNotifierPrivate();
       
    35 
       
    36     virtual ~CaUninstallNotifierPrivate();
       
    37     
       
    38     void makeConnect();
       
    39 
       
    40 private:
       
    41     CaUninstallObserver* mUninstallObserver;
       
    42     CCaProgresScanner* mProgressScanner;
       
    43     QSharedPointer<CaSoftwareRegistry> mCaSoftwareRegistry;
       
    44     
       
    45     const CaUninstallNotifier *m_q;
       
    46     friend class CaUninstallNotifier;
       
    47 
       
    48 };
       
    49 
       
    50 
       
    51 #endif // CAUNINSTALLNOTIFIER_P_H