summaryrefslogtreecommitdiff
path: root/upb/msgfactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'upb/msgfactory.h')
-rw-r--r--upb/msgfactory.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/upb/msgfactory.h b/upb/msgfactory.h
index 73a26ba..9b3b599 100644
--- a/upb/msgfactory.h
+++ b/upb/msgfactory.h
@@ -5,10 +5,15 @@
#ifndef UPB_MSGFACTORY_H_
#define UPB_MSGFACTORY_H_
-UPB_DECLARE_TYPE(upb::MessageFactory, upb_msgfactory)
-
/** upb_msgfactory ************************************************************/
+struct upb_msgfactory;
+typedef struct upb_msgfactory upb_msgfactory;
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* A upb_msgfactory contains a cache of upb_msglayout, upb_handlers, and
* upb_visitorplan objects. These are the objects necessary to represent,
* populate, and and visit upb_msg objects.
@@ -36,5 +41,8 @@ const upb_symtab *upb_msgfactory_symtab(const upb_msgfactory *f);
const upb_msglayout *upb_msgfactory_getlayout(upb_msgfactory *f,
const upb_msgdef *m);
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
#endif /* UPB_MSGFACTORY_H_ */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback