DDraceNetwork Docs
assertion_logger.h
Go to the documentation of this file.
1#ifndef ENGINE_SHARED_ASSERTION_LOGGER_H
2#define ENGINE_SHARED_ASSERTION_LOGGER_H
3
4#include <memory>
5
6class ILogger;
7class IStorage;
8
9std::unique_ptr<ILogger> CreateAssertionLogger(IStorage *pStorage, const char *pGameName);
10
11#endif
std::unique_ptr< ILogger > CreateAssertionLogger(IStorage *pStorage, const char *pGameName)
Definition: assertion_logger.cpp:80
Definition: logger.h:67
Definition: storage.h:20