15 lines
302 B
C++
15 lines
302 B
C++
|
/*
|
||
|
* RBDL - Rigid Body Dynamics Library
|
||
|
* Copyright (c) 2011-2016 Martin Felis <martin@fysx.org>
|
||
|
*
|
||
|
* Licensed under the zlib license. See LICENSE for more details.
|
||
|
*/
|
||
|
|
||
|
#include "rbdl/Logging.h"
|
||
|
|
||
|
RBDL_DLLAPI std::ostringstream LogOutput;
|
||
|
|
||
|
RBDL_DLLAPI void ClearLogOutput() {
|
||
|
LogOutput.str("");
|
||
|
}
|