#pragma once namespace YaraSharp { public ref class YSReport { Dictionary^>^ files; public: YSReport(); ~YSReport(); bool IsEmpty(); List^ GetFiles(); Dictionary^>^ Dump(); void MergeReports(YSReport^ report); void AddReport(String^ file, String^ description); }; }