source: trunk/Include/Classes/System/Xml/XmlDeclaration.ab@ 424

Last change on this file since 424 was 424, checked in by dai, 16 years ago

System.Xml関連のクラスを仮実装してみた(まだ満足な機能レベルではない…)。

File size: 513 bytes
Line 
1Namespace System
2Namespace Xml
3
4/*!
5@brief XML 宣言ノード <?xml version='1.0' ...?> を表します。
6*/
7Class XmlDeclaration
8 Inherits XmlLinkedNode
9
10 version As String
11 encoding As String
12 standalone As String
13
14Public
15 Sub XmlDeclaration( version As String, encoding As String, standalone As String, doc As XmlDocument )
16 XmlLinkedNode( "", "xml", "", doc )
17 This.version = version
18 This.encoding = encoding
19 This.standalone = standalone
20 End Sub
21End Class
22
23
24End Namespace
25End Namespace
Note: See TracBrowser for help on using the repository browser.