-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopencvplugin_api.h
42 lines (27 loc) · 1.19 KB
/
opencvplugin_api.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*============================================================================
Copyright 2016 by:
Commonwealth Scientific and Industrial Research Organisation (CSIRO)
This file is licensed by CSIRO under the copy of the CSIRO Open Source
Software License Agreement (variation of the BSD / MIT License) included
with the file.
As a condition of this license, you agree that where you make any
adaptations, modifications, further developments, or additional features
available to CSIRO or the public in connection with your access to the
Software, you do so on the terms of the BSD 3-Clause License template,
a copy available at: http://opensource.org/licenses/BSD-3-Clause
For further information, contact the CSIRO Workspace Team:
workspace@csiro.au
This copyright notice must be included with all copies of the source code.
============================================================================*/
/**
* \file
*/
#ifndef CSIRO_OPENCV_API_H
#define CSIRO_OPENCV_API_H
#include "Workspace/api_workspace.h"
#ifdef CSIRO_OPENCV_EXPORT
#define CSIRO_OPENCV_API CSIRO_EXPORTSPEC
#else
#define CSIRO_OPENCV_API CSIRO_IMPORTSPEC
#endif
#endif