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 25 by william, Thu Mar 7 11:36:00 2013 UTC vs.
Revision 26 by william, Thu Mar 7 11:58:34 2013 UTC

# Line 4 | Line 4 | using System.Linq;
4   using System.Text;
5   using System.IO;
6   using System.Xml.Linq;
7 + using libxmltv.Core;
8  
9   namespace libxmltv.Interfaces
10   {
# Line 17 | Line 18 | namespace libxmltv.Interfaces
18          IXMLTV_LOADER XMLTV_LOADER { get; }
19          void TestParse();
20          IXMLTVSource Source { get; }
21 +        Dictionary<string, IXMLTVChannel> Channels { get; }
22      }
23  
24      public interface IXMLTVSource
# Line 26 | Line 28 | namespace libxmltv.Interfaces
28          string GeneratorUrl { get; }
29          string ToString();
30      }
31 +    public interface IXMLTVChannel
32 +    {
33 +        string ChannelId { get; }
34 +        int ChannelNumber { get; }
35 +        string ChannelCallSign { get; }
36 +        string ChannelName { get; }
37 +    }
38   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines