Files
ChanSort/ChanSort.Loader.GlobalClone/GcSerializerPlugin.cs
hbeham 7c1cdbdba3 - support for LG LB55/LB556 binary TLL format
- support for LG LB58 binary TLL format
- support for LG GlobalClone XML format with UTF8-enveloped binary DVB channel names (look like chinese), plain text channel names and hex-encoded DVB channel names
2014-05-29 19:36:29 +02:00

16 lines
377 B
C#

using ChanSort.Api;
namespace ChanSort.Loader.GlobalClone
{
public class GcSerializerPlugin : ISerializerPlugin
{
public string PluginName { get { return "LG GlobalClone"; } }
public string FileFilter { get { return "*Clone*.tll"; } }
public SerializerBase CreateSerializer(string inputFile)
{
return new GcSerializer(inputFile);
}
}
}