| OLD | NEW |
| 1 // Protocol Buffers - Google's data interchange format | 1 // Protocol Buffers - Google's data interchange format |
| 2 // Copyright 2008 Google Inc. All rights reserved. | 2 // Copyright 2008 Google Inc. All rights reserved. |
| 3 // http://code.google.com/p/protobuf/ | 3 // https://developers.google.com/protocol-buffers/ |
| 4 // | 4 // |
| 5 // Redistribution and use in source and binary forms, with or without | 5 // Redistribution and use in source and binary forms, with or without |
| 6 // modification, are permitted provided that the following conditions are | 6 // modification, are permitted provided that the following conditions are |
| 7 // met: | 7 // met: |
| 8 // | 8 // |
| 9 // * Redistributions of source code must retain the above copyright | 9 // * Redistributions of source code must retain the above copyright |
| 10 // notice, this list of conditions and the following disclaimer. | 10 // notice, this list of conditions and the following disclaimer. |
| 11 // * Redistributions in binary form must reproduce the above | 11 // * Redistributions in binary form must reproduce the above |
| 12 // copyright notice, this list of conditions and the following disclaimer | 12 // copyright notice, this list of conditions and the following disclaimer |
| 13 // in the documentation and/or other materials provided with the | 13 // in the documentation and/or other materials provided with the |
| (...skipping 16 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 // Author: kenton@google.com (Kenton Varda) | 31 // Author: kenton@google.com (Kenton Varda) |
| 32 // Based on original Protocol Buffers design by | 32 // Based on original Protocol Buffers design by |
| 33 // Sanjay Ghemawat, Jeff Dean, and others. | 33 // Sanjay Ghemawat, Jeff Dean, and others. |
| 34 | 34 |
| 35 #ifndef GOOGLE_PROTOBUF_COMPILER_CPP_SERVICE_H__ | 35 #ifndef GOOGLE_PROTOBUF_COMPILER_CPP_SERVICE_H__ |
| 36 #define GOOGLE_PROTOBUF_COMPILER_CPP_SERVICE_H__ | 36 #define GOOGLE_PROTOBUF_COMPILER_CPP_SERVICE_H__ |
| 37 | 37 |
| 38 #include <map> | 38 #include <map> |
| 39 #include <string> | 39 #include <string> |
| 40 #include <google/protobuf/stubs/common.h> | |
| 41 #include <google/protobuf/compiler/cpp/cpp_options.h> | 40 #include <google/protobuf/compiler/cpp/cpp_options.h> |
| 42 #include <google/protobuf/descriptor.h> | 41 #include <google/protobuf/descriptor.h> |
| 43 | 42 |
| 44 namespace google { | 43 namespace google { |
| 45 namespace protobuf { | 44 namespace protobuf { |
| 46 namespace io { | 45 namespace io { |
| 47 class Printer; // printer.h | 46 class Printer; // printer.h |
| 48 } | 47 } |
| 49 } | 48 } |
| 50 | 49 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 109 |
| 111 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ServiceGenerator); | 110 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ServiceGenerator); |
| 112 }; | 111 }; |
| 113 | 112 |
| 114 } // namespace cpp | 113 } // namespace cpp |
| 115 } // namespace compiler | 114 } // namespace compiler |
| 116 } // namespace protobuf | 115 } // namespace protobuf |
| 117 | 116 |
| 118 } // namespace google | 117 } // namespace google |
| 119 #endif // GOOGLE_PROTOBUF_COMPILER_CPP_SERVICE_H__ | 118 #endif // GOOGLE_PROTOBUF_COMPILER_CPP_SERVICE_H__ |
| OLD | NEW |