os/mm/mmapitest/devsoundhaitest/inc/T_CRepositoryData.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-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 
    18 
    19 
    20 #ifndef T_CREPOSITORY_DATA_H
    21 #define T_CREPOSITORY_DATA_H
    22 
    23 //User Includes
    24 #include "datawrapperbase.h"
    25 
    26 //Epoc Includes
    27 #include <centralrepository.h>//CRepository
    28 
    29 class CT_CRepositoryData : public CDataWrapperBase
    30 	{
    31 public:
    32 	~CT_CRepositoryData();
    33 	static	CT_CRepositoryData* NewL();
    34 	virtual TAny* GetObject();
    35 	virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
    36 	CT_CRepositoryData();
    37 	
    38 private:
    39 	
    40 	void ConstructL();
    41 
    42 	void DestroyData();
    43 	
    44 private:
    45 	void DoCmdNewL(const TTEFSectionName& aSection);
    46 	void DoCmdDestructor();
    47     void DoCmdSet(const TTEFSectionName& aSection);
    48     
    49 private:
    50 	/**
    51 	 * Wrapped object
    52 	 */
    53     CRepository* iRepository;
    54     	
    55 	};
    56 
    57 
    58 #endif //T_CREPOSITORY_DATA_H
    59 
    60