mds_plat/metadata_engine_api/inc/mdetextproperty.h
changeset 60 79f826a55db2
parent 0 c53acadfccc6
equal deleted inserted replaced
58:fe894bb075c2 60:79f826a55db2
       
     1 /*
       
     2 * Copyright (c) 2008-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:  CMdETextProperty's compatible wrapper to CMdEProperty
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __MDETEXTPROPERTY_H__
       
    20 #define __MDETEXTPROPERTY_H__
       
    21 
       
    22 #include <mdeproperty.h>
       
    23 
       
    24 /**
       
    25  * Text property compatibility wrapper to property.
       
    26  */
       
    27 NONSHARABLE_CLASS(CMdETextProperty) : public CMdEProperty
       
    28 	{
       
    29 public:
       
    30 	/**
       
    31 	 * Returns the text value of the property.
       
    32 	 *
       
    33 	 * @return  value
       
    34 	 */
       
    35 	const TDesC& Value() const;
       
    36 
       
    37 	/**
       
    38 	 * Sets the text value of the property.
       
    39 	 *
       
    40 	 * @param aValue       New value.
       
    41 	 */
       
    42 	void SetValueL(const TDesC& aValue);
       
    43 	};
       
    44 
       
    45 #include <mdetextproperty.inl>
       
    46 	
       
    47 #endif  // __MDETEXTPROPERTY_H__
       
    48