• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Protocol Buffers - Google's data interchange format
2 // Copyright 2024 Google Inc.  All rights reserved.
3 //
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file or at
6 // https://developers.google.com/open-source/licenses/bsd
7 
8 #ifndef GOOGLE_PROTOBUF_COMPILER_JAVA_LITE_MAKE_FIELD_GENS_H__
9 #define GOOGLE_PROTOBUF_COMPILER_JAVA_LITE_MAKE_FIELD_GENS_H__
10 
11 #include <memory>
12 #include <vector>
13 
14 #include "google/protobuf/compiler/java/context.h"
15 #include "google/protobuf/compiler/java/generator_common.h"
16 #include "google/protobuf/compiler/java/lite/field_generator.h"
17 #include "google/protobuf/descriptor.h"
18 
19 namespace google {
20 namespace protobuf {
21 namespace compiler {
22 namespace java {
23 
24 FieldGeneratorMap<ImmutableFieldLiteGenerator> MakeImmutableFieldLiteGenerators(
25     const Descriptor* descriptor, Context* context);
26 
27 }  // namespace java
28 }  // namespace compiler
29 }  // namespace protobuf
30 }  // namespace google
31 
32 #endif  // GOOGLE_PROTOBUF_COMPILER_JAVA_LITE_MAKE_FIELD_GENS_H__
33