os/textandloc/textrendering/texthandling/stext/TXTOPT.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1999-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 * Optional data owned by a CEditableText object; used by the inline FEP editing and undo-redo systems, etc.
    16 *
    17 */
    18 
    19 
    20 
    21 
    22 #ifndef __TXTOPT_H__
    23 #define __TXTOPT_H__
    24 
    25 NONSHARABLE_CLASS(CEditableTextOptionalData) : public CBase
    26 /**
    27 @internalComponent
    28 */
    29 	{
    30 	public:
    31 	CEditableTextOptionalData();
    32 	~CEditableTextOptionalData();
    33 
    34 	CInlineEditData* iInlineEditData; // FEP inline editing data
    35 
    36 	private:
    37 	CEditableTextOptionalData(const CEditableTextOptionalData&); // unimplemented
    38 	void operator=(const CEditableTextOptionalData&); // unimplemented
    39 	};
    40 
    41 #endif // __TXTOPT_H__