blob: 31cbd808b2994dcef4fb45259a0ff148dc736d3f [file] [log] [blame]
#include "mocked_utils.hpp"
namespace utils
{
static std::unique_ptr<MockedUtils> utils;
const UtilsInterface& getUtils()
{
if (!utils)
{
utils = std::make_unique<MockedUtils>();
}
return *utils;
}
void freeUtils()
{
utils.reset();
}
} // namespace utils