ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/xmltv_parser/trunk/libxmltv/Core/XMLTVLoader.cs
(Generate patch)

Comparing trunk/libxmltv/Core/XMLTVLoader.cs (file contents):
Revision 43 by william, Fri Mar 8 02:13:59 2013 UTC vs.
Revision 44 by william, Fri Mar 8 03:36:44 2013 UTC

# Line 9 | Line 9 | using System.Xml.Linq;
9  
10   namespace libxmltv.Core
11   {  
12 <    internal class XMLTVLoader// : IXMLTV_LOADER
12 >    internal class XMLTVLoader : IDisposable
13      {
14          private string xmlfile = string.Empty;
15 +        internal static void CreateInstance(string xml_file, XMLTVRuntimeInstance xmltv)
16 +        {
17 +            using (XMLTVLoader g = new XMLTVLoader(xml_file, xmltv)) { }            
18 +        }
19          private XMLTVRuntimeInstance instance;
20 <        public XMLTVLoader(string xml_file, XMLTVRuntimeInstance xmltv)
20 >        protected XMLTVLoader(string xml_file, XMLTVRuntimeInstance xmltv)
21          {
22              XMLTV_LOGGER.Log.Verbose.Debug.WriteLine("Creating Instance of XMLTVLoader");
23              //string _xmltv;
# Line 43 | Line 47 | namespace libxmltv.Core
47                  XMLTV_LOGGER.Log.Error.WriteLine(ex.GetBaseException().ToString());
48              }
49          }
50 +
51 +        public void Dispose()
52 +        {
53 +            //throw new NotImplementedException();
54 +        }
55      }
56   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines