Files
ChanSort/source/ChanSort.Loader.Hisense/HisSerializerPlugin.cs
hbeham 256710ec94 - DX upgrade
- Hisense SQLite read/write support for DVB-C/S/T
2015-11-25 23:19:39 +01:00

27 lines
634 B
C#

#define HISENSE_ENABLED
/*
Support for the Hisense file format (Sep 2015) is currently disabled due to the risk of damaging the TV when
users import files in an older/newer format than the currently installed firmware expects.
*/
using ChanSort.Api;
namespace ChanSort.Loader.Hisense
{
#if HISENSE_ENABLED
public class HisSerializerPlugin : ISerializerPlugin
{
public string PluginName => "Hisense *.db";
public string FileFilter => "channel.db";
#region CreateSerializer()
public SerializerBase CreateSerializer(string inputFile)
{
return new HisSerializer(inputFile);
}
#endregion
}
#endif
}