contentstorage/casoftwareregistry/stub/inc/casoftwareregistry_p.h
changeset 94 dbb8300717f7
child 98 d2f833ab7940
equal deleted inserted replaced
93:82b66994846c 94:dbb8300717f7
       
     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 
       
    26 class CaSoftwareRegistryPrivate
       
    27 {
       
    28 public:
       
    29     typedef QHash<QString, QString> DetailMap;
       
    30     
       
    31     explicit CaSoftwareRegistryPrivate(
       
    32         CaSoftwareRegistry *softwareRegistryPublic);
       
    33     ~CaSoftwareRegistryPrivate();
       
    34 
       
    35     DetailMap entryDetails(int componentId) const;
       
    36 private:
       
    37 
       
    38     CaSoftwareRegistry *const m_q;
       
    39 
       
    40 };
       
    41 
       
    42 #endif // CA_SOFTWARE_REGISTRY_PRIVATE_H