- allow Pr#0 for analog channels

- added loader for Toshiba *.db files (saving not yet implemented)
This commit is contained in:
hbeham
2013-04-10 00:35:25 +02:00
parent 16694534f0
commit 49979e3a29
23 changed files with 7926 additions and 2580 deletions

View 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);
}
}
}