mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-05-02 19:45:54 -05:00
--------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de> Co-authored-by: ebbit1q <ebbit1q@gmail.com>
15 lines
207 B
C++
15 lines
207 B
C++
#ifndef GET_PB_EXTENSION_H
|
|
#define GET_PB_EXTENSION_H
|
|
|
|
namespace google
|
|
{
|
|
namespace protobuf
|
|
{
|
|
class Message;
|
|
}
|
|
} // namespace google
|
|
|
|
int getPbExtension(const ::google::protobuf::Message &message);
|
|
|
|
#endif
|