Subversion Repository Public Repository

WOX2

Diff Revisions 13 vs 14 for /trunk/CSharp/src/wox/serial/Easy.cs

Diff revisions: vs.
  @@ -1,18 +1,31 @@
1 1 using System;
2 2 using System.IO;
3 3
4 - /**
5 - * The Easy class is used to serialize/de-serialize objects to/from XML.
6 - *
7 - * Authors: Carlos R. Jaimez Gonzalez
8 - * Simon M. Lucas
9 - * Version: 1.0
10 - * Version: 1.1 - Steve Lewis
11 - * Version: 2.0 - George Smith
12 - */
4 + /// <header>
5 + /// <wox>
6 + /// <version>1.0</version>
7 + /// <author>Carlos R. Jaimez Gonzalez</author>
8 + /// <author>Simon M. Lucas</author>
9 + /// <site>http://woxserializer.sourceforge.net/</site>
10 + /// </wox>
11 + /// <wox>
12 + /// <version>1.5</version>
13 + /// <author>Steven M Lewis</author>
14 + /// </wox>
15 + /// <wox>
16 + /// <version>2.0</version>
17 + /// <author>George A Smith</author>
18 + /// <svn>http://woxserializer.sourceforge.net/</svn>
19 + /// <note>XML form for vs 2 is more compact and therefor incompatible with vs 1</note>
20 + /// </wox>
21 + /// </header>
13 22
14 23 namespace wox.serial
15 24 {
25 + /// <summary>
26 + /// The Easy class is used to serialize/de-serialize objects to/from XML.
27 + /// </summary>
28 +
16 29 public class Easy
17 30 {
18 31 private readonly WoxHandlers mWoxHandlers = new WoxHandlers();
  @@ -137,4 +150,4 @@
137 150 }
138 151 }
139 152 }
140 - }
153 + }