namespace BurnOutSharp
{
internal interface IContentCheck
{
///
/// Check a path for protections based on file contents
///
/// File to check for protection indicators
/// Byte array representing the file contents
/// True to include positional data, false otherwise
/// String containing any protections found in the file
/// TODO: This should be replaced with a "GenerateMatchers" that produces a list of matchers to be run instead
string CheckContents(string file, byte[] fileContent, bool includePosition);
}
}