contentstorage/casoftwareregistry/s60/inc/casoftwareregistry_p.h
changeset 80 397d00875918
child 98 d2f833ab7940
equal deleted inserted replaced
73:4bc7b118b3df 80:397d00875918
       
     1 /*
       
     2  * Copyright (c) 2010 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: casoftwareregistry_p.h
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef CA_SOFTWARE_REGISTRY_PRIVATE_H
       
    19 #define CA_SOFTWARE_REGISTRY_PRIVATE_H
       
    20 
       
    21 #include <QHash>
       
    22 #include <QString>
       
    23 
       
    24 class CaSoftwareRegistry;
       
    25 namespace Usif 
       
    26 {
       
    27     class CComponentEntry;
       
    28 }
       
    29 
       
    30 class CaSoftwareRegistryPrivate
       
    31 {
       
    32 public:
       
    33 
       
    34     typedef QHash<QString, QString> DetailMap;
       
    35 
       
    36     explicit CaSoftwareRegistryPrivate(
       
    37         CaSoftwareRegistry *softwareRegistryPublic);
       
    38     ~CaSoftwareRegistryPrivate();
       
    39 
       
    40     DetailMap entryDetails(int componentId) const;
       
    41     
       
    42     DetailMap entryDetails(
       
    43         const Usif::CComponentEntry& entry) const;
       
    44 private:
       
    45     CaSoftwareRegistry *const m_q;
       
    46 
       
    47 };
       
    48 
       
    49 #endif // CA_SOFTWARE_REGISTRY_PRIVATE_H