Revision: | 22 |
Committed: | Thu Mar 7 10:20:50 2013 UTC (10 years ago) by william |
File size: | 389 byte(s) |
Log Message: |
# | User | Rev | Content |
---|---|---|---|
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 | } | ||
19 | william | 10 | } |