mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-20 14:22:37 -08:00
--------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de> Co-authored-by: ebbit1q <ebbit1q@gmail.com>
16 lines
252 B
C++
16 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
|