mirror of
https://github.com/kirirururu/telebotxx.git
synced 2026-06-14 18:30:43 +00:00
12 lines
217 B
C++
12 lines
217 B
C++
#ifndef TELEBOTXX_LOGGING_HPP
|
|
#define TELEBOTXX_LOGGING_HPP
|
|
|
|
namespace telebotxx
|
|
{
|
|
extern bool debugMode;
|
|
|
|
/// \brief Enable/disable debug output
|
|
void setDebugMode(bool enabled);
|
|
}
|
|
|
|
#endif // TELEBOTXX_LOGGING_HPP
|