blob: 7d5d26febc4eab96195f6f3e25bad84e80adee5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef TMCAGLWM_JSON_HELPER_HPP
#define TMCAGLWM_JSON_HELPER_HPP
#include "wayland.hpp"
struct json_object;
json_object *to_json(genivi::screen const *s);
json_object *to_json(genivi::controller::props_map const &s);
json_object *to_json(std::vector<uint32_t> const &v);
#endif // TMCAGLWM_JSON_HELPER_HPP
|