44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
|
// Protocol Buffers - Google's data interchange format
|
||
|
// Copyright 2008 Google Inc. All rights reserved.
|
||
|
//
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file or at
|
||
|
// https://developers.google.com/open-source/licenses/bsd
|
||
|
|
||
|
#ifndef GOOGLE_PROTOBUF_COMPILER_CSHARP_ENUM_H__
|
||
|
#define GOOGLE_PROTOBUF_COMPILER_CSHARP_ENUM_H__
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "google/protobuf/compiler/code_generator.h"
|
||
|
#include "google/protobuf/compiler/csharp/csharp_source_generator_base.h"
|
||
|
#include "google/protobuf/descriptor.h"
|
||
|
#include "google/protobuf/io/printer.h"
|
||
|
|
||
|
namespace google {
|
||
|
namespace protobuf {
|
||
|
namespace compiler {
|
||
|
namespace csharp {
|
||
|
|
||
|
class EnumGenerator : public SourceGeneratorBase {
|
||
|
public:
|
||
|
EnumGenerator(const EnumDescriptor* descriptor, const Options* options);
|
||
|
~EnumGenerator();
|
||
|
|
||
|
EnumGenerator(const EnumGenerator&) = delete;
|
||
|
EnumGenerator& operator=(const EnumGenerator&) = delete;
|
||
|
|
||
|
void Generate(io::Printer* printer);
|
||
|
|
||
|
private:
|
||
|
const EnumDescriptor* descriptor_;
|
||
|
};
|
||
|
|
||
|
} // namespace csharp
|
||
|
} // namespace compiler
|
||
|
} // namespace protobuf
|
||
|
} // namespace google
|
||
|
|
||
|
#endif // GOOGLE_PROTOBUF_COMPILER_CSHARP_ENUM_H__
|
||
|
|