Skip to content

Commit d1a5a3e

Browse files
Merge pull request #37 from itom-project/v4.3.0_ITOM_Version
V4.3.0 itom version
2 parents d521d8c + 0842610 commit d1a5a3e

File tree

375 files changed

+4238
-3816
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

375 files changed

+4238
-3816
lines changed

AVTVimba/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ if(AVT_VIMBA_HEADER_FILE)
5959
${CMAKE_CURRENT_SOURCE_DIR}/dialogAvtVimba.h
6060
${CMAKE_CURRENT_SOURCE_DIR}/dockWidgetAvtVimba.h
6161
${CMAKE_CURRENT_SOURCE_DIR}/avtEnums.h
62-
${CMAKE_CURRENT_SOURCE_DIR}/pluginVersion.h
62+
${CMAKE_CURRENT_BINARY_DIR}/pluginVersion.h
6363
${CMAKE_CURRENT_BINARY_DIR}/gitVersion.h
6464
#add further header files (absolute paths e.g. using CMAKE_CURRENT_SOURCE_DIR)
6565
)
@@ -71,6 +71,9 @@ if(AVT_VIMBA_HEADER_FILE)
7171
#add further source files here
7272
)
7373

74+
#Define Version in pluginVersion.h
75+
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/pluginVersion.h.in ${CMAKE_CURRENT_BINARY_DIR}/pluginVersion.h)
76+
7477
if(MSVC)
7578
list(APPEND PLUGIN_SOURCES ${ITOM_SDK_INCLUDE_DIR}/../pluginLibraryVersion.rc)
7679
endif()

AVTVimba/avtVimba.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ The plugin was tested with AVT Vimba 1.3.0, 1.4.0, 2.5.0. \n\
6363
In order to run your camera, please install the Vimba SDK in the right version such that the necessary drivers are installed. \n\
6464
Color formats are not supported.");
6565

66-
m_author = "J. Nitsche (IPROM Uni Braunschweig), M. Gronle (ITO Uni Stuttgart)";
67-
m_version = (PLUGIN_VERSION_MAJOR << 16) + (PLUGIN_VERSION_MINOR << 8) + PLUGIN_VERSION_PATCH;
68-
m_minItomVer = MINVERSION;
69-
m_maxItomVer = MAXVERSION;
70-
m_license = QObject::tr("Licensed under LGPL");
66+
m_author = PLUGIN_AUTHOR;
67+
m_version = PLUGIN_VERSION;
68+
m_minItomVer = PLUGIN_MIN_ITOM_VERSION;
69+
m_maxItomVer = PLUGIN_MAX_ITOM_VERSION;
70+
m_license = QObject::tr(PLUGIN_LICENCE);
7171
m_aboutThis = QObject::tr(GITVERSION);
7272

7373
//add mandatory and optional parameters for the initialization here.

AVTVimba/pluginVersion.h

Lines changed: 0 additions & 45 deletions
This file was deleted.

BasicGPLFilters/pluginVersion.h renamed to AVTVimba/pluginVersion.h.in

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,14 @@
3030

3131
#include "itom_sdk.h"
3232

33-
#define PLUGIN_VERSION_MAJOR 0
34-
#define PLUGIN_VERSION_MINOR 1
35-
#define PLUGIN_VERSION_PATCH 0
36-
#define PLUGIN_VERSION_REVISION 0
37-
#define PLUGIN_VERSION CREATE_VERSION(PLUGIN_VERSION_MAJOR,PLUGIN_VERSION_MINOR,PLUGIN_VERSION_PATCH)
38-
#define PLUGIN_VERSION_STRING CREATE_VERSION_STRING(PLUGIN_VERSION_MAJOR,PLUGIN_VERSION_MINOR,PLUGIN_VERSION_PATCH)
39-
#define PLUGIN_COMPANY "twip optical solutions GmbH, Stuttgart"
40-
#define PLUGIN_COPYRIGHT "(C) 2014, under GPL 3.0"
41-
#define PLUGIN_NAME "BasicGPLFilters"
42-
43-
//----------------------------------------------------------------------------------------------------------------------------------
33+
#define PLUGIN_VERSION CREATE_VERSION(6, 0, 0)
34+
#define PLUGIN_MIN_ITOM_VERSION CREATE_VERSION(1, 3, 0)
35+
#define PLUGIN_MAX_ITOM_VERSION CREATE_VERSION(${itom_plugins_VERSION_MAJOR},${itom_plugins_VERSION_MINOR},${itom_plugins_VERSION_PATCH})
36+
#define PLUGIN_LICENCE "Licensed under LGPL."
37+
#define PLUGIN_COMPANY "IPROM, TU Braunschweig; ITO, Universität Stuttgart"
38+
#define PLUGIN_AUTHOR "J. Nitsche (IPROM Uni Braunschweig), M. Gronle (ITO Uni Stuttgart)"
39+
#define PLUGIN_COPYRIGHT "(C) 2018, IPROM + ITO"
40+
#define PLUGIN_NAME "AVTVimba"
41+
4442

4543
#endif // PLUGINVERSION_H

AerotechA3200/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ else(BUILD_TARGET64)
4848
${CMAKE_CURRENT_SOURCE_DIR}/aerotechA3200.h
4949
${CMAKE_CURRENT_SOURCE_DIR}/dockWidgetAerotechA3200.h
5050
${CMAKE_CURRENT_SOURCE_DIR}/dialogAerotechA3200.h
51-
${CMAKE_CURRENT_SOURCE_DIR}/pluginVersion.h
51+
${CMAKE_CURRENT_BINARY_DIR}/pluginVersion.h
5252
${CMAKE_CURRENT_BINARY_DIR}/gitVersion.h
5353
)
5454

@@ -67,6 +67,9 @@ else(BUILD_TARGET64)
6767
${CMAKE_CURRENT_SOURCE_DIR}/dialogAerotechA3200.cpp
6868
)
6969

70+
#Define Version in global.h
71+
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/pluginVersion.h.in ${CMAKE_CURRENT_BINARY_DIR}/pluginVersion.h)
72+
7073
#Add version information to the plugIn-dll under MSVC
7174
if(MSVC)
7275
list(APPEND PLUGIN_SOURCES ${ITOM_SDK_INCLUDE_DIR}/../pluginLibraryVersion.rc)

AerotechA3200/aerotechA3200.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,12 @@ For details please check C:\\A3200\\MANUAL.";*/
7272
m_detaildescription = QObject::tr(
7373
"This plugin allows communicating with controllers of type A3200 of company Aerotech. \n\
7474
For details please check C:\\A3200\\MANUAL.");
75-
m_author = "Simon Chen, Christof Pruss, ITO, Universität Stuttgart";
76-
m_version = (PLUGIN_VERSION_MAJOR << 16) + (PLUGIN_VERSION_MINOR << 8) + PLUGIN_VERSION_PATCH;
77-
m_minItomVer = MINVERSION;
78-
m_maxItomVer = MAXVERSION;
79-
m_license = QObject::tr("Licensed under LGPL, The Aerotech A3200 library belongs to Aerotech under their specific license (accessible by their free FTP server).");
75+
76+
m_author = PLUGIN_AUTHOR;
77+
m_version = PLUGIN_VERSION;
78+
m_minItomVer = PLUGIN_MIN_ITOM_VERSION;
79+
m_maxItomVer = PLUGIN_MAX_ITOM_VERSION;
80+
m_license = QObject::tr(PLUGIN_LICENCE);
8081
m_aboutThis = QObject::tr(GITVERSION);
8182

8283
m_autoLoadPolicy = ito::autoLoadNever;

SerialIO/pluginVersion.h renamed to AerotechA3200/pluginVersion.h.in

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,16 @@
3030

3131
#include "itom_sdk.h"
3232

33-
#define PLUGIN_VERSION_MAJOR 1
34-
#define PLUGIN_VERSION_MINOR 1
35-
#define PLUGIN_VERSION_PATCH 1
36-
#define PLUGIN_VERSION_REVISION 0
37-
#define PLUGIN_VERSION \
38-
CREATE_VERSION(PLUGIN_VERSION_MAJOR, PLUGIN_VERSION_MINOR, PLUGIN_VERSION_PATCH)
39-
#define PLUGIN_VERSION_STRING \
40-
CREATE_VERSION_STRING(PLUGIN_VERSION_MAJOR, PLUGIN_VERSION_MINOR, PLUGIN_VERSION_PATCH)
41-
#define PLUGIN_COMPANY "Institut für Technische Optik, Universität Stuttgart"
42-
#define PLUGIN_COPYRIGHT "(C) 2017, ITO, Universität Stuttgart"
43-
#define PLUGIN_NAME "SerialIO"
33+
#define PLUGIN_VERSION CREATE_VERSION(2, 19, 0)
34+
#define PLUGIN_MIN_ITOM_VERSION CREATE_VERSION(1, 3, 0)
35+
#define PLUGIN_MAX_ITOM_VERSION CREATE_VERSION(${itom_plugins_VERSION_MAJOR},${itom_plugins_VERSION_MINOR},${itom_plugins_VERSION_PATCH})
36+
#define PLUGIN_LICENCE "Licensed under LGPL, The Aerotech A3200 library belongs to Aerotech under their specific license (accessible by their free FTP server)."
37+
#define PLUGIN_COMPANY "Institut für Technische Optik, Universität Stuttgart"
38+
#define PLUGIN_AUTHOR "Simon Chen, Christof Pruss, ITO, Universität Stuttgart"
39+
#define PLUGIN_COPYRIGHT "(C) 2013, ITO, Universität Stuttgart"
40+
#define PLUGIN_NAME "AerotechA3200"
41+
42+
4443

4544
//----------------------------------------------------------------------------------------------------------------------------------
4645

AerotechEnsemble/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ set(PLUGIN_HEADERS
5151
${CMAKE_CURRENT_SOURCE_DIR}/aerotechEnsemble.h
5252
${CMAKE_CURRENT_SOURCE_DIR}/dockWidgetAerotechEnsemble.h
5353
${CMAKE_CURRENT_SOURCE_DIR}/dialogAerotechEnsemble.h
54-
${CMAKE_CURRENT_SOURCE_DIR}/pluginVersion.h
54+
${CMAKE_CURRENT_BINARY_DIR}/pluginVersion.h
5555
${CMAKE_CURRENT_BINARY_DIR}/gitVersion.h
5656
)
5757

@@ -69,6 +69,9 @@ set(PLUGIN_SOURCES
6969
${CMAKE_CURRENT_SOURCE_DIR}/dialogAerotechEnsemble.cpp
7070
)
7171

72+
#Define Version in pluginVersion.h
73+
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/pluginVersion.h.in ${CMAKE_CURRENT_BINARY_DIR}/pluginVersion.h)
74+
7275
#Add version information to the plugIn-dll under MSVC
7376
if(MSVC)
7477
list(APPEND PLUGIN_SOURCES ${ITOM_SDK_INCLUDE_DIR}/../pluginLibraryVersion.rc)

AerotechEnsemble/aerotechEnsemble.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ license information of Aerotech see their documentation. \n\
8686
\n\
8787
For loading the Ensemble library you need the Visual C++ 2008 SP1 Redistributable Package provided by Microsoft (see Ensemble Programming Help).");
8888

89-
m_author = "A. Bielke, M. Gronle, ITO, Universität Stuttgart, Juergen Ortmann, Ortmann Digitaltechnik";
90-
m_version = (PLUGIN_VERSION_MAJOR << 16) + (PLUGIN_VERSION_MINOR << 8) + PLUGIN_VERSION_PATCH;
91-
m_minItomVer = MINVERSION;
92-
m_maxItomVer = MAXVERSION;
93-
m_license = QObject::tr("Licensed under LGPL, The Aerotech Ensemble library belongs to Aerotech under their specific license.");
89+
m_author = PLUGIN_AUTHOR;
90+
m_version = PLUGIN_VERSION;
91+
m_minItomVer = PLUGIN_MIN_ITOM_VERSION;
92+
m_maxItomVer = PLUGIN_MAX_ITOM_VERSION;
93+
m_license = QObject::tr(PLUGIN_LICENCE);
9494
m_aboutThis = QObject::tr(GITVERSION);
9595

9696
m_autoLoadPolicy = ito::autoLoadNever;

AerotechEnsemble/pluginVersion.h renamed to AerotechEnsemble/pluginVersion.h.in

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,13 @@
3030

3131
#include "itom_sdk.h"
3232

33-
#define PLUGIN_VERSION_MAJOR 0
34-
#define PLUGIN_VERSION_MINOR 1
35-
#define PLUGIN_VERSION_PATCH 0
36-
#define PLUGIN_VERSION_REVISION 0
37-
#define PLUGIN_VERSION CREATE_VERSION(PLUGIN_VERSION_MAJOR,PLUGIN_VERSION_MINOR,PLUGIN_VERSION_PATCH)
38-
#define PLUGIN_VERSION_STRING CREATE_VERSION_STRING(PLUGIN_VERSION_MAJOR,PLUGIN_VERSION_MINOR,PLUGIN_VERSION_PATCH)
39-
#define PLUGIN_COMPANY "Institut für Technische Optik, Universität Stuttgart"
40-
#define PLUGIN_COPYRIGHT "(C) 2013, ITO, Universität Stuttgart"
41-
#define PLUGIN_NAME "AerotechEnsemble"
42-
43-
//----------------------------------------------------------------------------------------------------------------------------------
33+
#define PLUGIN_VERSION CREATE_VERSION(4, 6, 1)
34+
#define PLUGIN_MIN_ITOM_VERSION CREATE_VERSION(1, 1, 0)
35+
#define PLUGIN_MAX_ITOM_VERSION CREATE_VERSION(${itom_plugins_VERSION_MAJOR},${itom_plugins_VERSION_MINOR},${itom_plugins_VERSION_PATCH})
36+
#define PLUGIN_LICENCE "Licensed under LGPL, The Aerotech Ensemble library belongs to Aerotech under their specific license."
37+
#define PLUGIN_COMPANY "Institut für Technische Optik, Universität Stuttgart"
38+
#define PLUGIN_AUTHOR "A. Bielke, M. Gronle, ITO, Universität Stuttgart, Juergen Ortmann, Ortmann Digitaltechnik"
39+
#define PLUGIN_COPYRIGHT "(C) 2013, ITO, Universität Stuttgart"
40+
#define PLUGIN_NAME "AerotechEnsemble"
4441

4542
#endif // PLUGINVERSION_H

AndorSDK3/AndorSDK3Interface.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ by the Windows path environment variable (e.g. append \"C:/Program Files/Andor S
7575

7676
m_author = PLUGIN_AUTHOR;
7777
m_version = PLUGIN_VERSION;
78-
m_minItomVer = MINVERSION;
79-
m_maxItomVer = MAXVERSION;
80-
m_license = tr("Licensed under LGPL");
81-
m_aboutThis = tr(GITVERSION);
78+
m_minItomVer = PLUGIN_MIN_ITOM_VERSION;
79+
m_maxItomVer = PLUGIN_MAX_ITOM_VERSION;
80+
m_license = QObject::tr(PLUGIN_LICENCE);
81+
m_aboutThis = QObject::tr(GITVERSION);
8282

8383
ito::Param param( "camera_idx", ito::ParamBase::Int | ito::ParamBase::In, 0, 31, 0, tr("camera index that should be opened. The first camera is 0, the second 1...").toLatin1().data());
8484
m_initParamsMand.append(param);

AndorSDK3/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ if(ANDOR_SDK3_DIR)
7676
${CMAKE_CURRENT_SOURCE_DIR}/DockWidgetAndorSDK3.h
7777
${CMAKE_CURRENT_SOURCE_DIR}/AndorSDK3.h
7878
${CMAKE_CURRENT_SOURCE_DIR}/AndorSDK3Interface.h
79-
${CMAKE_CURRENT_SOURCE_DIR}/pluginVersion.h
79+
${CMAKE_CURRENT_BINARY_DIR}/pluginVersion.h
8080
${CMAKE_CURRENT_BINARY_DIR}/gitVersion.h
8181
#add further header files (absolute paths e.g. using CMAKE_CURRENT_SOURCE_DIR)
8282
)
@@ -98,6 +98,9 @@ if(ANDOR_SDK3_DIR)
9898
${CMAKE_CURRENT_SOURCE_DIR}/DockWidgetAndorSDK3.ui
9999
)
100100

101+
#Define Version in pluginVersion.h
102+
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/pluginVersion.h.in ${CMAKE_CURRENT_BINARY_DIR}/pluginVersion.h)
103+
101104
set(PLUGIN_RCC
102105
#add absolute paths to any *.qrc resource files here
103106
)

AndorSDK3/pluginVersion.h.in

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/* ********************************************************************
2+
itom software
3+
URL: http://www.uni-stuttgart.de/ito
4+
Copyright (C) 2018, Institut für Technische Optik (ITO),
5+
Universität Stuttgart, Germany
6+
7+
This file is part of itom and its software development toolkit (SDK).
8+
9+
itom is free software; you can redistribute it and/or modify it
10+
under the terms of the GNU Library General Public Licence as published by
11+
the Free Software Foundation; either version 2 of the Licence, or (at
12+
your option) any later version.
13+
14+
In addition, as a special exception, the Institut für Technische
15+
Optik (ITO) gives you certain additional rights.
16+
These rights are described in the ITO LGPL Exception version 1.0,
17+
which can be found in the file LGPL_EXCEPTION.txt in this package.
18+
19+
itom is distributed in the hope that it will be useful, but
20+
WITHOUT ANY WARRANTY; without even the implied warranty of
21+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library
22+
General Public Licence for more details.
23+
24+
You should have received a copy of the GNU Library General Public License
25+
along with itom. If not, see <http://www.gnu.org/licenses/>.
26+
*********************************************************************** */
27+
28+
#ifndef PLUGINVERSION_H
29+
#define PLUGINVERSION_H
30+
31+
#include "itom_sdk.h"
32+
33+
#define PLUGIN_VERSION CREATE_VERSION(3, 15, 3)
34+
#define PLUGIN_MIN_ITOM_VERSION CREATE_VERSION(1, 4, 0)
35+
#define PLUGIN_MAX_ITOM_VERSION CREATE_VERSION(${itom_plugins_VERSION_MAJOR},${itom_plugins_VERSION_MINOR},${itom_plugins_VERSION_PATCH})
36+
#define PLUGIN_LICENCE "Licensed under LGPL."
37+
#define PLUGIN_COMPANY "Institut für Technische Optik, Universität Stuttgart"
38+
#define PLUGIN_AUTHOR "M. Gronle (ITO Uni Stuttgart)"
39+
#define PLUGIN_COPYRIGHT "(C) 2014, ITO, Universität Stuttgart"
40+
#define PLUGIN_NAME "AndorSDK3"
41+
42+
#endif // PLUGINVERSION_H

AvantesAvaSpec/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ set(PLUGIN_HEADERS
3636
${CMAKE_CURRENT_SOURCE_DIR}/avantesDefines.h
3737
${CMAKE_CURRENT_SOURCE_DIR}/dialogAvantesAvaSpec.h
3838
${CMAKE_CURRENT_SOURCE_DIR}/dockWidgetAvantesAvaSpec.h
39-
${CMAKE_CURRENT_SOURCE_DIR}/pluginVersion.h
39+
${CMAKE_CURRENT_BINARY_DIR}/pluginVersion.h
4040
${CMAKE_CURRENT_BINARY_DIR}/gitVersion.h
4141
)
4242

@@ -51,6 +51,9 @@ set(PLUGIN_UI
5151
${CMAKE_CURRENT_SOURCE_DIR}/dockWidgetAvantesAvaSpec.ui
5252
)
5353

54+
#Define Version in pluginVersion.h
55+
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/pluginVersion.h.in ${CMAKE_CURRENT_BINARY_DIR}/pluginVersion.h)
56+
5457
set(PLUGIN_RCC
5558
#add absolute paths to any *.qrc resource files here
5659
)

AvantesAvaSpec/avantesAvaSpec.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,12 @@ tested with the following spectrometers: \
133133
* AvaSpec 3468 USB-Spectrometer \
134134
* AvaSpec 2048 USB-Spectrometer \
135135
* AvaSpec-ULS2048CL-EVO USB3-Spectrometer.");
136-
m_author = "M. Gronle, R. Hahn, W. Lyda, ITO, Universität Stuttgart";
137-
m_license = QObject::tr("LGPL");
138-
m_version = (PLUGIN_VERSION_MAJOR << 16) + (PLUGIN_VERSION_MINOR << 8) + PLUGIN_VERSION_PATCH;
139-
m_minItomVer = MINVERSION;
140-
m_maxItomVer = MAXVERSION;
141-
m_aboutThis = tr(GITVERSION);
136+
m_author = PLUGIN_AUTHOR;
137+
m_version = PLUGIN_VERSION;
138+
m_minItomVer = PLUGIN_MIN_ITOM_VERSION;
139+
m_maxItomVer = PLUGIN_MAX_ITOM_VERSION;
140+
m_license = QObject::tr(PLUGIN_LICENCE);
141+
m_aboutThis = QObject::tr(GITVERSION);
142142

143143
m_autoLoadPolicy = ito::autoLoadNever;
144144
m_autoSavePolicy = ito::autoSaveNever;

AvantesAvaSpec/pluginVersion.h.in

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/* ********************************************************************
2+
itom software
3+
URL: http://www.uni-stuttgart.de/ito
4+
Copyright (C) 2018, Institut für Technische Optik (ITO),
5+
Universität Stuttgart, Germany
6+
7+
This file is part of itom and its software development toolkit (SDK).
8+
9+
itom is free software; you can redistribute it and/or modify it
10+
under the terms of the GNU Library General Public Licence as published by
11+
the Free Software Foundation; either version 2 of the Licence, or (at
12+
your option) any later version.
13+
14+
In addition, as a special exception, the Institut für Technische
15+
Optik (ITO) gives you certain additional rights.
16+
These rights are described in the ITO LGPL Exception version 1.0,
17+
which can be found in the file LGPL_EXCEPTION.txt in this package.
18+
19+
itom is distributed in the hope that it will be useful, but
20+
WITHOUT ANY WARRANTY; without even the implied warranty of
21+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library
22+
General Public Licence for more details.
23+
24+
You should have received a copy of the GNU Library General Public License
25+
along with itom. If not, see <http://www.gnu.org/licenses/>.
26+
*********************************************************************** */
27+
28+
#ifndef PLUGINVERSION_H
29+
#define PLUGINVERSION_H
30+
31+
#include "itom_sdk.h"
32+
33+
#define PLUGIN_VERSION CREATE_VERSION(1, 3, 1)
34+
#define PLUGIN_MIN_ITOM_VERSION CREATE_VERSION(2, 0, 0)
35+
#define PLUGIN_MAX_ITOM_VERSION CREATE_VERSION(${itom_plugins_VERSION_MAJOR},${itom_plugins_VERSION_MINOR},${itom_plugins_VERSION_PATCH})
36+
#define PLUGIN_LICENCE "Licensed under LGPL."
37+
#define PLUGIN_COMPANY "Institut für Technische Optik, Universität Stuttgart"
38+
#define PLUGIN_AUTHOR "M. Gronle, R. Hahn, W. Lyda, ITO, Universität Stuttgart"
39+
#define PLUGIN_COPYRIGHT "(C) 2016, ITO, Universität Stuttgart"
40+
#define PLUGIN_NAME "AvantesAvaSpec"
41+
42+
#endif // PLUGINVERSION_H

0 commit comments

Comments
 (0)