mirror of
https://github.com/vcmi/vcmi.git
synced 2025-03-29 21:56:54 +02:00
21 lines
406 B
C
21 lines
406 B
C
|
/*
|
||
|
* CLogFormat.h, part of VCMI engine
|
||
|
*
|
||
|
* Authors: listed in file AUTHORS in main folder
|
||
|
*
|
||
|
* License: GNU General Public License v2.0 or later
|
||
|
* Full text of license available in license.txt file, in main folder
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace vstd
|
||
|
{
|
||
|
template<typename Logger, typename ... Args>
|
||
|
void logDebugFormat(Logger * logger, const std::string & format, Args ... args)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|