11 lines
222 B
C++
11 lines
222 B
C++
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
#include "baselayer.h"
|
|
|
|
class Debug : public BaseLayer {
|
|
public:
|
|
explicit Debug () noexcept;
|
|
uint32_t Down (const char * buf, const uint32_t size) override;
|
|
};
|
|
|
|
#endif // DEBUG_H
|