mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 11:43:23 +08:00
17 lines
212 B
C++
17 lines
212 B
C++
// âûâîä èíôîðìàöèè â îòëàä÷èê
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class DbgPrint {
|
|
|
|
public:
|
|
|
|
static void dprint( const std::string& str );
|
|
|
|
static void dprintln( const std::string& str );
|
|
|
|
};
|
|
|