aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/function/basic/ChannelObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/function/basic/ChannelObject.h')
-rw-r--r--src/core/function/basic/ChannelObject.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/function/basic/ChannelObject.h b/src/core/function/basic/ChannelObject.h
index 6fb315ae..18317ee2 100644
--- a/src/core/function/basic/ChannelObject.h
+++ b/src/core/function/basic/ChannelObject.h
@@ -55,7 +55,7 @@ class GPGFRONTEND_CORE_EXPORT ChannelObject {
*
* @param channel
*/
- explicit ChannelObject(int channel);
+ explicit ChannelObject(int channel, std::string type);
/**
* @brief Get the Default Channel object
@@ -80,6 +80,7 @@ class GPGFRONTEND_CORE_EXPORT ChannelObject {
private:
int channel_ = kGpgFrontendDefaultChannel; ///< The channel id
+ std::string type_;
};
template <typename Derived>