58 |
{ |
{ |
59 |
bool Serialize(string file); |
bool Serialize(string file); |
60 |
bool Serialize(Stream stream); |
bool Serialize(Stream stream); |
61 |
bool DeSerialize(string file, out T unpacked_data); |
T DeSerialize(string file, out bool status); |
62 |
bool DeSerialize(Stream stream, out T unpacked_data); |
T DeSerialize(Stream stream, out bool status); |
63 |
} |
} |
64 |
|
|
65 |
|
public interface IXMLTV<INTERFACE, CLASS> : IXMLTVSerializer<INTERFACE> |
66 |
|
where CLASS : class,INTERFACE |
67 |
|
{ |
68 |
|
//IXMLTVSerializer<CLASS> CreateSerializer(); |
69 |
|
INTERFACE GetInstance(); |
70 |
|
//CLASS GetInternalInstance(); |
71 |
|
} |
72 |
} |
} |