mirror of
https://github.com/stellarbear/YaraSharp
synced 2026-06-08 17:36:09 +00:00
20 lines
344 B
C++
20 lines
344 B
C++
#pragma once
|
|
|
|
namespace YaraSharp
|
|
{
|
|
public ref class YSReport
|
|
{
|
|
Dictionary<String^, List<String^>^>^ files;
|
|
public:
|
|
YSReport();
|
|
~YSReport();
|
|
|
|
bool IsEmpty();
|
|
List<String^>^ GetFiles();
|
|
Dictionary<String^, List<String^>^>^ Dump();
|
|
|
|
void MergeReports(YSReport^ report);
|
|
void AddReport(String^ file, String^ description);
|
|
};
|
|
}
|