mirror of
https://github.com/stellarbear/YaraSharp
synced 2026-06-08 17:36:09 +00:00
10 lines
228 B
C++
10 lines
228 B
C++
#include "Stdafx.h"
|
|
|
|
// CContext
|
|
namespace YaraSharp
|
|
{
|
|
// Êîíñòðóêòîð
|
|
CContext::CContext() { ErrorUtility::ThrowOnError(yr_initialize()); }
|
|
// Äåñòðóêòîð
|
|
CContext::~CContext() { ErrorUtility::ThrowOnError(yr_finalize()); }
|
|
} |