mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
git-svn-id: svn://claunia.com/FileSystemIDandChk@29 17725271-3d32-4980-a8cb-9ff532f270ba
19 lines
434 B
C#
19 lines
434 B
C#
using System;
|
|
|
|
namespace FileSystemIDandChk.Plugins
|
|
{
|
|
public abstract class Plugin
|
|
{
|
|
public string Name;
|
|
public Guid PluginUUID;
|
|
|
|
protected Plugin()
|
|
{
|
|
}
|
|
|
|
public abstract bool Identify(ImagePlugins.ImagePlugin imagePlugin, ulong partitionOffset);
|
|
public abstract void GetInformation(ImagePlugins.ImagePlugin imagePlugin, ulong partitionOffset, out string information);
|
|
}
|
|
}
|
|
|