mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-28 01:59:03 +01:00
- allow Pr#0 for analog channels
- added loader for Toshiba *.db files (saving not yet implemented)
This commit is contained in:
15
ChanSort.Loader.DbFile/DbSerializerPlugin.cs
Normal file
15
ChanSort.Loader.DbFile/DbSerializerPlugin.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using ChanSort.Api;
|
||||
|
||||
namespace ChanSort.Loader.DbFile
|
||||
{
|
||||
public class DbSerializerPlugin : ISerializerPlugin
|
||||
{
|
||||
public string PluginName { get { return "Toshiba chmgt.db"; } }
|
||||
public string FileFilter { get { return "chmgt.db"; } }
|
||||
|
||||
public SerializerBase CreateSerializer(string inputFile)
|
||||
{
|
||||
return new DbSerializer(inputFile);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user