SOLA
Loading...
Searching...
No Matches
service.h
1// Copyright The SOLA Contributors
2//
3// Licensed under the MIT License.
4// For details on the licensing terms, see the LICENSE file.
5// SPDX-License-Identifier: MIT
6
7#ifndef SOLA_SERVICE_H_
8#define SOLA_SERVICE_H_
9
10#include <any>
11#include <map>
12#include <string>
13
14namespace sola {
15struct Service {
16 std::map<std::string, std::any> key_values;
17 std::string friendly_name;
18 std::string type;
19 std::string uuid;
20};
21} // namespace sola
22
23#endif
Definition service.h:15