summaryrefslogtreecommitdiffstats
path: root/ahl-binding/role.hpp
diff options
context:
space:
mode:
authorLoïc Collignon <loic.collignon@iot.bzh>2018-12-18 10:37:24 +0100
committerLoïc Collignon <loic.collignon@iot.bzh>2018-12-20 18:13:14 +0100
commitf30e1a348f35e5ba9ff2d00d8f71edf095926d17 (patch)
treec5c6b4f87c5fa1d50dae878127abb3070d60311b /ahl-binding/role.hpp
parentcc1b67bfc67fb5c7a9e1b8c9ba287dd48d2ccf36 (diff)
Fix indentation and trailing whitespaces
Convert every indentation to tab instead of spaces and get rid of mixed tab/spaces indentations. Also remove few trailing whitespaces. Change-Id: Ic4a8f2adcacb99789a403aefe6a16daaffee5cd6 Signed-off-by: Loïc Collignon <loic.collignon@iot.bzh>
Diffstat (limited to 'ahl-binding/role.hpp')
-rw-r--r--ahl-binding/role.hpp102
1 files changed, 51 insertions, 51 deletions
diff --git a/ahl-binding/role.hpp b/ahl-binding/role.hpp
index 7cf0f7e..e0c979a 100644
--- a/ahl-binding/role.hpp
+++ b/ahl-binding/role.hpp
@@ -24,59 +24,59 @@
class role_t
{
private:
- // Members filled by config
- std::string uid_;
- std::string description_;
- std::string hal_;
- std::string stream_;
- int priority_;
- std::vector<interrupt_t> interrupts_;
+ // Members filled by config
+ std::string uid_;
+ std::string description_;
+ std::string hal_;
+ std::string stream_;
+ int priority_;
+ std::vector<interrupt_t> interrupts_;
- std::string device_uri_;
- bool opened_ = false;
-
- int apply_policy(afb_req_t req);
+ std::string device_uri_;
+ bool opened_ = false;
- void do_mute(afb_req_t, bool);
+ int apply_policy(afb_req_t req);
+
+ void do_mute(afb_req_t, bool);
public:
- explicit role_t() = default;
- explicit role_t(const role_t&) = default;
- explicit role_t(role_t&&) = default;
-
- ~role_t() = default;
-
- role_t& operator=(const role_t&) = default;
- role_t& operator=(role_t&&) = default;
-
- static role_t from_json(json_object* o);
-
- explicit role_t(json_object* j);
-
- role_t& operator<<(json_object* j);
-
- std::string uid() const;
- std::string description() const;
- std::string hal() const;
- std::string stream() const;
- int priority() const;
- const std::vector<interrupt_t>& interrupts() const;
- std::string device_uri() const;
- bool opened() const;
-
- void uid(std::string v);
- void description(std::string v);
- void hal(std::string v);
- void stream(std::string v);
- void device_uri(std::string v);
- void priority(int v);
-
- void invoke(afb_req_t r);
-
- void open(afb_req_t r, json_object* o);
- void close(afb_req_t r, json_object* o);
- void volume(afb_req_t r, json_object* o);
- void interrupt(afb_req_t r, json_object* o);
- void mute(afb_req_t r, json_object* o);
- void unmute(afb_req_t r, json_object* o);
+ explicit role_t() = default;
+ explicit role_t(const role_t&) = default;
+ explicit role_t(role_t&&) = default;
+
+ ~role_t() = default;
+
+ role_t& operator=(const role_t&) = default;
+ role_t& operator=(role_t&&) = default;
+
+ static role_t from_json(json_object* o);
+
+ explicit role_t(json_object* j);
+
+ role_t& operator<<(json_object* j);
+
+ std::string uid() const;
+ std::string description() const;
+ std::string hal() const;
+ std::string stream() const;
+ int priority() const;
+ const std::vector<interrupt_t>& interrupts() const;
+ std::string device_uri() const;
+ bool opened() const;
+
+ void uid(std::string v);
+ void description(std::string v);
+ void hal(std::string v);
+ void stream(std::string v);
+ void device_uri(std::string v);
+ void priority(int v);
+
+ void invoke(afb_req_t r);
+
+ void open(afb_req_t r, json_object* o);
+ void close(afb_req_t r, json_object* o);
+ void volume(afb_req_t r, json_object* o);
+ void interrupt(afb_req_t r, json_object* o);
+ void mute(afb_req_t r, json_object* o);
+ void unmute(afb_req_t r, json_object* o);
};