summaryrefslogtreecommitdiff
path: root/implementation/configuration/include/client.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/configuration/include/client.hpp')
-rw-r--r--implementation/configuration/include/client.hpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/implementation/configuration/include/client.hpp b/implementation/configuration/include/client.hpp
new file mode 100644
index 0000000..fcb4395
--- /dev/null
+++ b/implementation/configuration/include/client.hpp
@@ -0,0 +1,28 @@
+// Copyright (C) 2016 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+#ifndef VSOMEIP_CFG_CLIENT_HPP
+#define VSOMEIP_CFG_CLIENT_HPP
+
+#include <map>
+#include <memory>
+#include <set>
+
+#include <vsomeip/primitive_types.hpp>
+
+namespace vsomeip {
+namespace cfg {
+
+struct client {
+ service_t service_;
+ instance_t instance_;
+
+ std::map<bool, std::set<uint16_t> > ports_;
+};
+
+} // namespace cfg
+} // namespace vsomeip
+
+#endif // VSOMEIP_CFG_CLIENT_HPP