using System; using System.Collections.Generic; using System.Linq; using System.Text; using libxmltv.Interfaces; namespace libxmltv.Core { internal class XMLTV_PARSER : IXMLTV_PARSER { public XMLTV_PARSER(object xmltv) { IXMLTV_LOADER _xmltv; if (!Internals.VerifyInstance(xmltv, out _xmltv)) { return; } XMLTV_LOADER = _xmltv; } #region IXMLTV_PARSER members public IXMLTV_LOADER XMLTV_LOADER { get; private set; } #endregion } }