| 83 | |
| 84 | private: |
| 85 | void for_each(std::function<void(timed_transition_t& t)> call) |
| 86 | { |
| 87 | call(attribs.off_x); |
| 88 | call(attribs.off_y); |
| 89 | call(attribs.off_z); |
| 90 | |
| 91 | call(attribs.scale_x); |
| 92 | call(attribs.scale_y); |
| 93 | |
| 94 | call(attribs.alpha); |
| 95 | call(attribs.rotation); |
| 96 | } |
| 97 | }; |
| 98 | |
| 99 | class WayfireSwitcher : public wf::per_output_plugin_instance_t, public wf::keyboard_interaction_t |
no outgoing calls
no test coverage detected