--- trunk/libxmltv/Interfaces/Interfaces.cs 2013/03/07 05:31:03 10 +++ trunk/libxmltv/Interfaces/Interfaces.cs 2013/03/07 10:20:50 22 @@ -2,7 +2,18 @@ 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; } + } }