epoc32/include/dtdnode.h
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 2fe1408b6811
child 4 837f303aceeb
     1.1 --- a/epoc32/include/dtdnode.h	Tue Mar 16 16:12:26 2010 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,54 +0,0 @@
     1.4 -// Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 -// All rights reserved.
     1.6 -// This component and the accompanying materials are made available
     1.7 -// 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
     1.8 -// which accompanies this distribution, and is available
     1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.10 -//
    1.11 -// Initial Contributors:
    1.12 -// Nokia Corporation - initial contribution.
    1.13 -//
    1.14 -// Contributors:
    1.15 -//
    1.16 -// Description:
    1.17 -// DTD node header
    1.18 -// 
    1.19 -//
    1.20 -
    1.21 -#if !defined(__CDTDNODE_H__)
    1.22 -#define __CDTDNODE_H__
    1.23 -
    1.24 -#include <e32base.h>
    1.25 -#include <cbnfnode.h>
    1.26 -
    1.27 -class CDTDNode : public CBNFNode
    1.28 -/**
    1.29 -Document Type Definition (DTD) node that forms part of a DTD tree.
    1.30 -@publishedAll
    1.31 -@released
    1.32 -*/
    1.33 -{
    1.34 -public:
    1.35 -	//##ModelId=3B66675300CE
    1.36 -	inline ~CDTDNode();
    1.37 -
    1.38 -	//##ModelId=3B66675300CD
    1.39 -	static inline CDTDNode* NewL();
    1.40 -	//##ModelId=3B66675300CC
    1.41 -	inline void AddCompletedAttributeL();
    1.42 -
    1.43 -	//##ModelId=3B66675300C4
    1.44 -	const TDesC* CompletedAttrID();
    1.45 -
    1.46 -	enum{ // attribute IDs start at -6000
    1.47 -		KCompletedAttrID = -6000
    1.48 -	};
    1.49 -private:
    1.50 -	//##ModelId=3B66675300C3
    1.51 -	inline CDTDNode();
    1.52 -};
    1.53 -
    1.54 -
    1.55 -#include <dtdnode.inl>
    1.56 -
    1.57 -#endif // __CDTDNODE_H__