59 lines
1.8 KiB
C++
59 lines
1.8 KiB
C++
// Protocol Buffers for Swift
|
|
//
|
|
// Copyright 2014 Alexey Khohklov(AlexeyXo).
|
|
// Copyright 2008 Google Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef swift_FILE_H__
|
|
#define swift_FILE_H__
|
|
|
|
#include <string>
|
|
#include <set>
|
|
#include <vector>
|
|
#include <google/protobuf/stubs/common.h>
|
|
|
|
namespace google {
|
|
namespace protobuf {
|
|
class FileDescriptor; // descriptor.h
|
|
namespace io {
|
|
class Printer; // printer.h
|
|
}
|
|
}
|
|
|
|
namespace protobuf {
|
|
namespace compiler {
|
|
namespace swift {
|
|
|
|
class FileGenerator {
|
|
public:
|
|
explicit FileGenerator(const FileDescriptor* file);
|
|
~FileGenerator();
|
|
|
|
void GenerateSource(io::Printer* printer);
|
|
|
|
const string& classname() { return classname_; }
|
|
|
|
private:
|
|
const FileDescriptor* file_;
|
|
string classname_;
|
|
|
|
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FileGenerator);
|
|
};
|
|
} // namespace swift
|
|
} // namespace compiler
|
|
} // namespace protobuf
|
|
} // namespace google
|
|
|
|
#endif // swift_FILE_H__
|