summaryrefslogtreecommitdiff
path: root/include/CommonAPI/DBus/DBusDeployment.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/CommonAPI/DBus/DBusDeployment.hpp')
-rw-r--r--include/CommonAPI/DBus/DBusDeployment.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/CommonAPI/DBus/DBusDeployment.hpp b/include/CommonAPI/DBus/DBusDeployment.hpp
index b12d67c..9eec01f 100644
--- a/include/CommonAPI/DBus/DBusDeployment.hpp
+++ b/include/CommonAPI/DBus/DBusDeployment.hpp
@@ -35,6 +35,13 @@ struct StringDeployment : CommonAPI::Deployment<> {
bool isObjectPath_;
};
+struct IntegerDeployment : CommonAPI::Deployment<> {
+ IntegerDeployment(bool _isUnixFD)
+ : isUnixFD_(_isUnixFD) {};
+
+ bool isUnixFD_;
+};
+
template<typename... Types_>
struct StructDeployment : CommonAPI::Deployment<Types_...> {
StructDeployment(Types_*... t)