ADTF
Loading...
Searching...
No Matches
adtf_plugin.h
Go to the documentation of this file.
1
7#pragma once
9
10#ifndef ADTF_PLUGIN
11
12#ifdef ADTF_NO_PLUGIN
13
14#define ADTF_PLUGIN(...)
15#define ADTF_PLUGIN_VERSION(...)
16
17#else
18
29#define ADTF_PLUGIN(__plugin_identifier, ...) UCOM_PLUGIN(__plugin_identifier, adtf::base::adtf_version_default, __VA_ARGS__)
30
43#define ADTF_PLUGIN_VERSION(__plugin_identifier, __version_id, __version_major, __version_minor, __version_patch, ...) \
44 ADTF_ADDITONAL_VERSION_TYPE(__version_id, __version_major, __version_minor, __version_patch); \
45 UCOM_PLUGIN(__plugin_identifier, adtf::base::adtf_version_customer<custom_version_##__version_id>, __VA_ARGS__)
46
47#endif
48#endif