ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/xmltv_parser/trunk/libxmltv/Interfaces/Interfaces.cs
(Generate patch)

Comparing trunk/libxmltv/Interfaces/Interfaces.cs (file contents):
Revision 43 by william, Fri Mar 8 02:13:59 2013 UTC vs.
Revision 44 by william, Fri Mar 8 03:36:44 2013 UTC

# Line 8 | Line 8 | using libxmltv.Core;
8  
9   namespace libxmltv.Interfaces
10   {
11 <    public interface IXMLTVLoader
11 >    public interface IXMLTVLoader : IDisposable
12      {
13          FileInfo XmlFile { get; }
14          XDocument XmlDoc { get; }
15      }
16 <    public interface IXMLTVParser
16 >    public interface IXMLTVParser : IDisposable
17      {
18          //IXMLTV_LOADER XMLTV_LOADER { get; }
19          //void TestParse();
# Line 48 | Line 48 | namespace libxmltv.Interfaces
48          string Description { get; }
49          string ToString();
50      }
51 <    public interface IXMLTVRuntimeInstance : IXMLTVLoader, IXMLTVParser { }
51 >    public interface IXMLTVRuntimeInstance : IXMLTVLoader, IXMLTVParser, IDisposable
52 >    {
53 >        bool IsDisposing { get; }
54 >    }
55   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines