ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/xmltv_parser/trunk/libxmltv/Core/XMLTV_PARSER.cs
Revision: 22
Committed: Thu Mar 7 10:20:50 2013 UTC (10 years, 3 months ago) by william
File size: 567 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 libxmltv.Interfaces;
6
7 namespace libxmltv.Core
8 {
9 internal class XMLTV_PARSER : IXMLTV_PARSER
10 {
11 public XMLTV_PARSER(object xmltv)
12 {
13 IXMLTV_LOADER _xmltv;
14 if (!Internals.VerifyInstance<IXMLTV_LOADER>(xmltv, out _xmltv)) { return; }
15 XMLTV_LOADER = _xmltv;
16 }
17 #region IXMLTV_PARSER members
18 public IXMLTV_LOADER XMLTV_LOADER { get; private set; }
19 #endregion
20 }
21 }