mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-12 15:49:28 -08:00
13 lines
191 B
C++
13 lines
191 B
C++
#ifndef GET_PB_EXTENSION_H
|
|
#define GET_PB_EXTENSION_H
|
|
|
|
namespace google {
|
|
namespace protobuf {
|
|
class Message;
|
|
}
|
|
}
|
|
|
|
int getPbExtension(const ::google::protobuf::Message &message);
|
|
|
|
#endif
|