ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/xmltv_parser/trunk/libxmltv/Interfaces/Interfaces.cs
Revision: 45
Committed: Fri Mar 8 03:41:18 2013 UTC (10 years, 6 months ago) by william
File size: 1423 byte(s)
Log Message:

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 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 {
11 public interface IXMLTVLoader
12 {
13 FileInfo XmlFile { get; }
14 XDocument XmlDoc { get; }
15 }
16 public interface IXMLTVParser
17 {
18 //IXMLTV_LOADER XMLTV_LOADER { get; }
19 //void TestParse();
20 IXMLTVSource Source { get; }
21 Dictionary<string, IXMLTVChannel> Channels { get; }
22 Dictionary<int, IXMLTVProgram> Programs { get; }
23 }
24
25 public interface IXMLTVSource
26 {
27 string SourceName { get; }
28 string GeneratorName { get; }
29 string GeneratorUrl { get; }
30 string ToString();
31 }
32 public interface IXMLTVChannel
33 {
34 string Id { get; }
35 int Number { get; }
36 string CallSign { get; }
37 string Name { get; }
38 string ToString();
39 }
40 public interface IXMLTVProgram
41 {
42 int Id { get; }
43 DateTime Start { get; }
44 DateTime Stop { get; }
45 IXMLTVChannel Channel { get; }
46 string Title { get; }
47 string SubTitle { get; }
48 string Description { get; }
49 string ToString();
50 }
51 public interface IXMLTVRuntimeInstance : IXMLTVLoader, IXMLTVParser
52 {
53 bool IsDisposing { get; }
54 }
55 }