mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
20 lines
387 B
C#
20 lines
387 B
C#
|
|
using System;
|
||
|
|
using System.IO;
|
||
|
|
|
||
|
|
namespace FileSystemIDandChk.Plugins
|
||
|
|
{
|
||
|
|
public abstract class Plugin
|
||
|
|
{
|
||
|
|
public string Name;
|
||
|
|
public Guid PluginUUID;
|
||
|
|
|
||
|
|
protected Plugin()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
public abstract bool Identify(FileStream stream, long offset);
|
||
|
|
public abstract void GetInformation(FileStream stream, long offset, out string information);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|