14 lines
279 B
C++
14 lines
279 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2015, Edouard DUPIN, all right reserved
|
|
* @license MPL v2.0 (see license file)
|
|
*/
|
|
|
|
#include <audio/river/debug.hpp>
|
|
|
|
|
|
int32_t audio::river::getLogId() {
|
|
static int32_t g_val = elog::registerInstance("river");
|
|
return g_val;
|
|
}
|