[openrtm-commit:01407] r147 - branches/newCMakeForVC2010/ImageProcessing/opencv/components/NetworkCameraUtility/include

openrtm @ openrtm.org openrtm @ openrtm.org
2014年 3月 25日 (火) 17:49:44 JST


Author: kawauchi
Date: 2014-03-25 17:49:44 +0900 (Tue, 25 Mar 2014)
New Revision: 147

Added:
   branches/newCMakeForVC2010/ImageProcessing/opencv/components/NetworkCameraUtility/include/utility_dll_defs.h
Log:
For build, registered provisionally dynamically generated file. refs #2704

Added: branches/newCMakeForVC2010/ImageProcessing/opencv/components/NetworkCameraUtility/include/utility_dll_defs.h
===================================================================
--- branches/newCMakeForVC2010/ImageProcessing/opencv/components/NetworkCameraUtility/include/utility_dll_defs.h	                        (rev 0)
+++ branches/newCMakeForVC2010/ImageProcessing/opencv/components/NetworkCameraUtility/include/utility_dll_defs.h	2014-03-25 08:49:44 UTC (rev 147)
@@ -0,0 +1,35 @@
+
+#ifndef NETWORKCAMERAUTILITY_API_H
+#define NETWORKCAMERAUTILITY_API_H
+
+#ifdef NetworkCameraUtility_BUILT_AS_STATIC
+#  define NETWORKCAMERAUTILITY_API
+#  define NETWORKCAMERAUTILITY_NO_EXPORT
+#else
+#  ifndef NETWORKCAMERAUTILITY_API
+#    ifdef NetworkCameraUtility_EXPORTS
+        /* We are building this library */
+#      define NETWORKCAMERAUTILITY_API __declspec(dllexport)
+#    else
+        /* We are using this library */
+#      define NETWORKCAMERAUTILITY_API __declspec(dllimport)
+#    endif
+#  endif
+
+#  ifndef NETWORKCAMERAUTILITY_NO_EXPORT
+#    define NETWORKCAMERAUTILITY_NO_EXPORT 
+#  endif
+#endif
+
+#ifndef NETWORKCAMERAUTILITY_DEPRECATED
+#  define NETWORKCAMERAUTILITY_DEPRECATED __declspec(deprecated)
+#  define NETWORKCAMERAUTILITY_DEPRECATED_EXPORT NETWORKCAMERAUTILITY_API __declspec(deprecated)
+#  define NETWORKCAMERAUTILITY_DEPRECATED_NO_EXPORT NETWORKCAMERAUTILITY_NO_EXPORT __declspec(deprecated)
+#endif
+
+#define DEFINE_NO_DEPRECATED 0
+#if DEFINE_NO_DEPRECATED
+# define NETWORKCAMERAUTILITY_NO_DEPRECATED
+#endif
+
+#endif



More information about the openrtm-commit mailing list