1 |
william |
10 |
using System; |
2 |
|
|
using System.Collections.Generic; |
3 |
|
|
using System.Linq; |
4 |
|
|
using System.Text; |
5 |
william |
11 |
using System.IO; |
6 |
william |
22 |
using System.Xml.Linq; |
7 |
william |
10 |
|
8 |
|
|
namespace libxmltv.Interfaces |
9 |
|
|
{ |
10 |
william |
11 |
public interface IXMLTV_LOADER |
11 |
|
|
{ |
12 |
|
|
FileInfo XmlFile { get; } |
13 |
william |
22 |
XDocument XmlDoc { get; } |
14 |
william |
11 |
} |
15 |
william |
22 |
public interface IXMLTV_PARSER |
16 |
|
|
{ |
17 |
|
|
IXMLTV_LOADER XMLTV_LOADER { get; } |
18 |
william |
23 |
void TestParse(); |
19 |
william |
25 |
IXMLTVSource Source { get; } |
20 |
william |
22 |
} |
21 |
william |
25 |
|
22 |
|
|
public interface IXMLTVSource |
23 |
|
|
{ |
24 |
|
|
string SourceName { get; } |
25 |
|
|
string GeneratorName { get; } |
26 |
|
|
string GeneratorUrl { get; } |
27 |
|
|
string ToString(); |
28 |
|
|
} |
29 |
william |
10 |
} |