14 lines
319 B
C++
Raw Normal View History

2015-02-09 21:44:32 +01:00
/** @file
* @author Edouard DUPIN
2014-03-12 23:55:49 +01:00
* @copyright 2011, Edouard DUPIN, all right reserved
2015-02-09 21:44:32 +01:00
* @license APACHE v2.0 (see license file)
* @fork from RTAudio
2014-03-12 23:55:49 +01:00
*/
#include <audio/orchestra/debug.h>
2014-03-12 23:55:49 +01:00
int32_t audio::orchestra::getLogId() {
static int32_t g_val = elog::registerInstance("audio-orchestra");
2014-04-30 22:18:00 +02:00
return g_val;
}