* implement custom protobuf debug log string creation * add version guards * add missing header * debian10 repository misses headers * clean up logging messages a bit * fix some more formatting on debug messages
15 lines
252 B
C++
15 lines
252 B
C++
#ifndef DEBUG_PB_MESSAGE_H
|
|
#define DEBUG_PB_MESSAGE_H
|
|
|
|
class QString;
|
|
namespace google
|
|
{
|
|
namespace protobuf
|
|
{
|
|
class Message;
|
|
}
|
|
} // namespace google
|
|
|
|
QString getSafeDebugString(const ::google::protobuf::Message &message);
|
|
|
|
#endif // DEBUG_PB_MESSAGE_H
|