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