Files
ChanSort/source/ChanSort.Loader.PhilipsXml/SerializerPlugin.cs
hbeham 0e7f810dd5 Philips: Improved support for ChannelMap_xxx channel lists directory structure.
Selecting any .xml or .bin file in the folder will now load all DVB\*.xml files from the
channellib and s2channellib sub folders.

The Loader can now return multiple file names to the MainForm that it will use for backup/restore.
2019-11-17 14:56:19 +01:00

17 lines
374 B
C#

using ChanSort.Api;
namespace ChanSort.Loader.PhilipsXml
{
public class SerializerPlugin : ISerializerPlugin
{
public string DllName { get; set; }
public string PluginName => "Philips .xml";
public string FileFilter => "*.xml;*.bin";
public SerializerBase CreateSerializer(string inputFile)
{
return new Serializer(inputFile);
}
}
}