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

src/router/osrf_router.h

index 8d5e21d..fc417c8 100644 (file)
@@ -16,7 +16,9 @@
 
 #include "opensrf/osrf_message.h"
 
-
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 /* a router maintains a list of server classes */
 struct _osrfRouterStruct {
@@ -79,5 +81,9 @@ void osrfRouterFree( osrfRouter* router );
   */
 //int osrfRouterHandleRequestMessage( osrfRouter* router, transport_message* msg );
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif