mirror of
https://github.com/UltraCoderRU/telebotxx.git
synced 2026-01-28 12:15:13 +00:00
13 lines
216 B
C++
13 lines
216 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
|