ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Serialization/SerializationWriter.cs
(Generate patch)

Comparing trunk/RomCheater/Serialization/SerializationWriter.cs (file contents):
Revision 402 by william, Thu Jun 21 06:30:33 2012 UTC vs.
Revision 405 by william, Thu Jun 21 14:38:54 2012 UTC

# Line 8 | Line 8 | namespace RomCheater.Serialization
8   {
9      public interface ISerializationResultCount
10      {
11 <        int ResultCount { get; }
11 >        int ResultCount { get; }    
12      }
13 +  
14      public abstract class SerializationWriter : ISerializationResultCount, IDisposable
15      {
16          private const string DEFAULT_FOLDER = "tmp";
# Line 21 | Line 22 | namespace RomCheater.Serialization
22          public SerializationWriter(string filename, int resultCount, bool delete) { FileName = filename; ResultCount = resultCount; CreateFile(delete); }
23  
24          #region ISerializationResultCount members
25 <        public int ResultCount { get; protected set; }        
25 >        public int ResultCount { get; protected set; }
26          #endregion
27          private FileStream fileStream;
28          protected BinaryWriter binWriter;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines