diff options
Diffstat (limited to 'common/propertymapper.h')
-rw-r--r-- | common/propertymapper.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/propertymapper.h b/common/propertymapper.h index 3fb3b44..57202ab 100644 --- a/common/propertymapper.h +++ b/common/propertymapper.h | |||
@@ -19,7 +19,7 @@ | |||
19 | 19 | ||
20 | #pragma once | 20 | #pragma once |
21 | 21 | ||
22 | #include "sinkcommon_export.h" | 22 | #include "sink_export.h" |
23 | #include <QVariant> | 23 | #include <QVariant> |
24 | #include <QByteArray> | 24 | #include <QByteArray> |
25 | #include <functional> | 25 | #include <functional> |
@@ -29,17 +29,17 @@ | |||
29 | * Defines how to convert qt primitives to flatbuffer ones | 29 | * Defines how to convert qt primitives to flatbuffer ones |
30 | */ | 30 | */ |
31 | template <class T> | 31 | template <class T> |
32 | flatbuffers::uoffset_t SINKCOMMON_EXPORT variantToProperty(const QVariant &, flatbuffers::FlatBufferBuilder &fbb); | 32 | flatbuffers::uoffset_t SINK_EXPORT variantToProperty(const QVariant &, flatbuffers::FlatBufferBuilder &fbb); |
33 | 33 | ||
34 | /** | 34 | /** |
35 | * Defines how to convert flatbuffer primitives to qt ones | 35 | * Defines how to convert flatbuffer primitives to qt ones |
36 | */ | 36 | */ |
37 | template <typename T> | 37 | template <typename T> |
38 | QVariant SINKCOMMON_EXPORT propertyToVariant(const flatbuffers::String *); | 38 | QVariant SINK_EXPORT propertyToVariant(const flatbuffers::String *); |
39 | template <typename T> | 39 | template <typename T> |
40 | QVariant SINKCOMMON_EXPORT propertyToVariant(uint8_t); | 40 | QVariant SINK_EXPORT propertyToVariant(uint8_t); |
41 | template <typename T> | 41 | template <typename T> |
42 | QVariant SINKCOMMON_EXPORT propertyToVariant(const flatbuffers::Vector<uint8_t> *); | 42 | QVariant SINK_EXPORT propertyToVariant(const flatbuffers::Vector<uint8_t> *); |
43 | 43 | ||
44 | 44 | ||
45 | /** | 45 | /** |