Index: src/Common/DelftTools.Utils/Serialization/IOwnedDataSerializable.cs
===================================================================
diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a
--- src/Common/DelftTools.Utils/Serialization/IOwnedDataSerializable.cs (.../IOwnedDataSerializable.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9)
+++ src/Common/DelftTools.Utils/Serialization/IOwnedDataSerializable.cs (.../IOwnedDataSerializable.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
@@ -1,23 +1,22 @@
-
-namespace DelftTools.Utils.Serialization
+namespace DelftTools.Utils.Serialization
{
- ///
- /// Interface which allows a class to save/retrieve their internal data to/from an existing SerializationWriter/SerializationReader.
- ///
- public interface IOwnedDataSerializable
- {
- ///
- /// Lets the implementing class store internal data directly into a SerializationWriter.
- ///
- /// The SerializationWriter to use
- /// Optional context to use as a hint as to what to store (BitVector32 is useful)
- void SerializeOwnedData(SerializationWriter writer, object context);
+ ///
+ /// Interface which allows a class to save/retrieve their internal data to/from an existing SerializationWriter/SerializationReader.
+ ///
+ public interface IOwnedDataSerializable
+ {
+ ///
+ /// Lets the implementing class store internal data directly into a SerializationWriter.
+ ///
+ /// The SerializationWriter to use
+ /// Optional context to use as a hint as to what to store (BitVector32 is useful)
+ void SerializeOwnedData(SerializationWriter writer, object context);
- ///
- /// Lets the implementing class retrieve internal data directly from a SerializationReader.
- ///
- /// The SerializationReader to use
- /// Optional context to use as a hint as to what to retrieve (BitVector32 is useful)
- void DeserializeOwnedData(SerializationReader reader, object context);
- }
+ ///
+ /// Lets the implementing class retrieve internal data directly from a SerializationReader.
+ ///
+ /// The SerializationReader to use
+ /// Optional context to use as a hint as to what to retrieve (BitVector32 is useful)
+ void DeserializeOwnedData(SerializationReader reader, object context);
+ }
}
\ No newline at end of file