9 |
|
|
10 |
namespace libxmltv.Core |
namespace libxmltv.Core |
11 |
{ |
{ |
12 |
internal class XMLTVLoader// : IXMLTV_LOADER |
internal class XMLTVLoader : IDisposable |
13 |
{ |
{ |
14 |
private string xmlfile = string.Empty; |
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; |
private XMLTVRuntimeInstance instance; |
20 |
public XMLTVLoader(string xml_file, XMLTVRuntimeInstance xmltv) |
protected XMLTVLoader(string xml_file, XMLTVRuntimeInstance xmltv) |
21 |
{ |
{ |
22 |
XMLTV_LOGGER.Log.Verbose.Debug.WriteLine("Creating Instance of XMLTVLoader"); |
XMLTV_LOGGER.Log.Verbose.Debug.WriteLine("Creating Instance of XMLTVLoader"); |
23 |
//string _xmltv; |
//string _xmltv; |
47 |
XMLTV_LOGGER.Log.Error.WriteLine(ex.GetBaseException().ToString()); |
XMLTV_LOGGER.Log.Error.WriteLine(ex.GetBaseException().ToString()); |
48 |
} |
} |
49 |
} |
} |
50 |
|
|
51 |
|
public void Dispose() |
52 |
|
{ |
53 |
|
//throw new NotImplementedException(); |
54 |
|
} |
55 |
} |
} |
56 |
} |
} |