summaryrefslogtreecommitdiff
path: root/upb/bindings/googlepb/proto2.int.h
diff options
context:
space:
mode:
authorgerben-s <gerbens@google.com>2018-08-21 15:31:54 -0700
committerGitHub <noreply@github.com>2018-08-21 15:31:54 -0700
commit0a95f73d0d9874151c0d36d6035230a873fa1715 (patch)
treea03b7fbaf122909d9aeab5b1769b661fc3cbbbc6 /upb/bindings/googlepb/proto2.int.h
parente3eae33fb5840dbec3c2bc9109fa164f6066baa8 (diff)
parent6155ed8b499c10bdd1f38bcb25866218bc388b7c (diff)
Merge pull request #116 from haberman/rmgooglepb
Removed a bunch of obsolete code.
Diffstat (limited to 'upb/bindings/googlepb/proto2.int.h')
-rw-r--r--upb/bindings/googlepb/proto2.int.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/upb/bindings/googlepb/proto2.int.h b/upb/bindings/googlepb/proto2.int.h
deleted file mode 100644
index 4f45efb..0000000
--- a/upb/bindings/googlepb/proto2.int.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// Support for registering field handlers that can write into a proto2
-// message that uses GeneratedMessageReflection (which includes all messages
-// generated by the proto2 compiler as well as DynamicMessage).
-//
-// This is an internal-only interface.
-
-#ifndef UPB_GOOGLE_PROTO2_H_
-#define UPB_GOOGLE_PROTO2_H_
-
-namespace proto2 {
-class FieldDescriptor;
-class Message;
-}
-
-namespace google {
-namespace protobuf {
-class FieldDescriptor;
-class Message;
-}
-}
-
-namespace upb {
-class FieldDef;
-class Handlers;
-}
-
-namespace upb {
-namespace googlepb {
-
-// Sets field handlers in the given Handlers object for writing to a single
-// field (as described by "proto2_f" and "upb_f") into a message constructed
-// by the same factory as "prototype." Returns true if this was successful
-// (this will fail if "prototype" is not a proto1 message, or if we can't
-// handle it for some reason).
-bool TrySetWriteHandlers(const proto2::FieldDescriptor* proto2_f,
- const proto2::Message& prototype,
- const upb::FieldDef* upb_f, upb::Handlers* h);
-bool TrySetWriteHandlers(const ::google::protobuf::FieldDescriptor* proto2_f,
- const ::google::protobuf::Message& prototype,
- const upb::FieldDef* upb_f, upb::Handlers* h);
-
-// Returns a prototype for the given field in "m", if the given message uses
-// GeneratedMessageReflection. Otherwise returns NULL.
-const proto2::Message* GetProto2FieldPrototype(
- const proto2::Message& m, const proto2::FieldDescriptor* f);
-const ::google::protobuf::Message* GetProto2FieldPrototype(
- const ::google::protobuf::Message& m,
- const ::google::protobuf::FieldDescriptor* f);
-
-} // namespace googlepb
-} // namespace upb
-
-#endif // UPB_GOOGLE_PROTO2_H_
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback