ARAM  2.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Pages
export.hpp
Go to the documentation of this file.
1 /*
2 Copyright (c) 2014, Altran Research Medic@
3 All rights reserved.
4 
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7 1. Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9 2. Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12 3. All advertising materials mentioning features or use of this software
13  must display the following acknowledgement:
14  This product includes software developed by Altran.
15 4. Neither the name of Altran nor the
16  names of its contributors may be used to endorse or promote products
17  derived from this software without specific prior written permission.
18 
19 THIS SOFTWARE IS PROVIDED BY ALTRAN RESEARCH MEDIC@ ''AS IS'' AND ANY
20 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 DISCLAIMED. IN NO EVENT SHALL ALTRAN RESEARCH MEDIC@ BE LIABLE FOR ANY
23 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30 
144 #pragma warning (disable : 4251)
145 
146 #ifndef _EXPORT_HPP_
147 #define _EXPORT_HPP_
148 
149 #ifndef ARAM_EXPORT_TRUE
150 #define ARAM_EXPORT_TRUE
151 #endif
152 
153 #ifdef WIN32
154  #ifdef ARAM_EXPORT_TRUE
155  #define ARAM_EXPORT __declspec(dllexport)
156  #else
157  #define ARAM_EXPORT __declspec(dllimport)
158  #endif
159 #else
160  //define empty values for linux OS
161  #define ARAM_EXPORT
162 #endif
163 
164 
165 // Use it if you want to export intermediate frame like Canny, Contours, and so on ... Take time !
166 #define EXPORT_FRAME
167 
168 
169 
175 namespace aram
176 {
177 };
178 
179 #endif