edn/sources/appl/debug.cpp

12 lines
257 B
C++
Raw Normal View History

2016-05-02 22:01:55 +02:00
/** @file
* @author Edouard DUPIN
2012-11-25 11:55:06 +01:00
* @copyright 2010, Edouard DUPIN, all right reserved
* @license GPL v3 (see license file)
*/
2016-10-03 22:01:55 +02:00
#include <appl/debug.hpp>
2013-10-25 20:49:26 +02:00
int32_t appl::getLogId() {
static int32_t g_val = elog::registerInstance("edn");
2014-04-30 22:18:00 +02:00
return g_val;
}