aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/message.h
diff options
context:
space:
mode:
authorGravatar kenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2009-08-08 03:23:04 +0000
committerGravatar kenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2009-08-08 03:23:04 +0000
commit323e6321c6409d1dad63eb0481204c3a9d672f98 (patch)
tree5ae30f63621e6a6ebbf11070862b2feadcdd597f /src/google/protobuf/message.h
parent75fcd790c4702f5b837666016310d4ddb4d88f0d (diff)
doc comment tweaks
Diffstat (limited to 'src/google/protobuf/message.h')
-rw-r--r--src/google/protobuf/message.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/google/protobuf/message.h b/src/google/protobuf/message.h
index eecd91a7..54b596d5 100644
--- a/src/google/protobuf/message.h
+++ b/src/google/protobuf/message.h
@@ -32,9 +32,10 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
//
-// This file contains the abstract interface for all protocol messages.
-// Although it's possible to implement this interface manually, most users
-// will use the protocol compiler to generate implementations.
+// Defines Message, the abstract interface implemented by non-lite
+// protocol message objects. Although it's possible to implement this
+// interface manually, most users will use the protocol compiler to
+// generate implementations.
//
// Example usage:
//
@@ -168,7 +169,8 @@ struct Metadata {
};
// Returns the EnumDescriptor for enum type E, which must be a
-// proto-declared enum type.
+// proto-declared enum type. Code generated by the protocol compiler
+// will include specializations of this template for each enum type declared.
template <typename E>
const EnumDescriptor* GetEnumDescriptor();