epoc32/include/mw/dtdnode.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 epoc32/include/dtdnode.h@2fe1408b6811
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // DTD node header
    15 // 
    16 //
    17 
    18 #if !defined(__CDTDNODE_H__)
    19 #define __CDTDNODE_H__
    20 
    21 #include <e32base.h>
    22 #include <cbnfnode.h>
    23 
    24 class CDTDNode : public CBNFNode
    25 /**
    26 Document Type Definition (DTD) node that forms part of a DTD tree.
    27 @publishedAll
    28 @released
    29 */
    30 {
    31 public:
    32 	//##ModelId=3B66675300CE
    33 	inline ~CDTDNode();
    34 
    35 	//##ModelId=3B66675300CD
    36 	static inline CDTDNode* NewL();
    37 	//##ModelId=3B66675300CC
    38 	inline void AddCompletedAttributeL();
    39 
    40 	//##ModelId=3B66675300C4
    41 	const TDesC* CompletedAttrID();
    42 
    43 	enum{ // attribute IDs start at -6000
    44 		KCompletedAttrID = -6000
    45 	};
    46 private:
    47 	//##ModelId=3B66675300C3
    48 	inline CDTDNode();
    49 };
    50 
    51 
    52 #include <dtdnode.inl>
    53 
    54 #endif // __CDTDNODE_H__