1
0
mirror of https://github.com/vcmi/vcmi.git synced 2026-05-16 09:28:24 +02:00

Draft boost::format based log proxy.

This commit is contained in:
AlexVinS
2016-08-12 09:38:26 +03:00
parent dd70e74769
commit 72f79a3ad7
14 changed files with 37 additions and 14 deletions
+20
View File
@@ -0,0 +1,20 @@
/*
* 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)
{
}
}