Files
stellarbear-YaraSharp/YaraSharp/Context.cpp
T
2018-04-16 14:51:14 +03:00

11 lines
271 B
C++

#include "Stdafx.h"
// CContext
namespace YaraSharp
{
// Constructor
CContext::CContext() { ErrorUtility::ThrowOnError(yr_initialize()); }
// Destructor
CContext::~CContext() { ErrorUtility::ThrowOnError(yr_finalize()); }
void CContext::Destroy() { delete this; }
}