blob: 5454877f5a37e6873535663253f282ba3c66d4b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef GOOGLE_PROTOBUF_COMPILER_PERLXS_HELPERS_H__
#define GOOGLE_PROTOBUF_COMPILER_PERLXS_HELPERS_H__
#include <map>
#include <google/protobuf/stubs/common.h>
namespace google {
namespace protobuf {
namespace compiler {
namespace perlxs {
void SetupDepthVars(std::map<TProtoStringType, TProtoStringType>& vars, int depth);
} // namespace perlxs
} // namespace compiler
} // namespace protobuf
} // namespace google
#endif // GOOGLE_PROTOBUF_COMPILER_PERLXS_HELPERS_H__
|