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 10 by william, Thu Mar 7 05:31:03 2013 UTC vs.
Revision 23 by william, Thu Mar 7 11:08:48 2013 UTC

--- trunk/libxmltv/Interfaces/Interfaces.cs	2013/03/07 05:31:03	10
+++ trunk/libxmltv/Interfaces/Interfaces.cs	2013/03/07 11:08:48	23
@@ -2,7 +2,19 @@
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;
+using System.IO;
+using System.Xml.Linq;
 
 namespace libxmltv.Interfaces
 {
+    public interface IXMLTV_LOADER
+    {
+        FileInfo XmlFile { get; }
+        XDocument XmlDoc { get; }
+    }
+    public interface IXMLTV_PARSER
+    {
+        IXMLTV_LOADER XMLTV_LOADER { get; }
+        void TestParse();
+    }
 }