ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/xmltv_parser/trunk/libxmltv/Interfaces/Interfaces.cs
Revision: 23
Committed: Thu Mar 7 11:08:48 2013 UTC (10 years, 9 months ago) by william
File size: 416 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
8 namespace libxmltv.Interfaces
9 {
10 public interface IXMLTV_LOADER
11 {
12 FileInfo XmlFile { get; }
13 XDocument XmlDoc { get; }
14 }
15 public interface IXMLTV_PARSER
16 {
17 IXMLTV_LOADER XMLTV_LOADER { get; }
18 void TestParse();
19 }
20 }