Prepare for #inclusion in C++
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 21:25:42 +0000 (21:25 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 21:25:42 +0000 (21:25 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1603 9efc2488-bf62-4759-914b-345cdb29e865

include/opensrf/osrf_json_xml.h

index ce06817..926ae37 100644 (file)
@@ -15,6 +15,9 @@
 #include <opensrf/utils.h>
 #include <opensrf/osrf_list.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 /**
  *     Generates an XML representation of a JSON object */
@@ -26,5 +29,9 @@ char* jsonObjectToXML( const jsonObject*);
  */
 jsonObject* jsonXMLToJSONObject(const char* xml);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif
 #endif