Mir
lockable_callback_wrapper.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2015 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 3,
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Alberto Aguirre <alberto.aguirre@canonical.com>
17  */
18 
19 #ifndef MIR_LOCKABLE_CALLBACK_WRAPPER_H_
20 #define MIR_LOCKABLE_CALLBACK_WRAPPER_H_
21 
22 #include "mir/lockable_callback.h"
23 
24 #include <functional>
25 #include <memory>
26 
27 namespace mir
28 {
30 {
31 public:
32  LockableCallbackWrapper(std::shared_ptr<LockableCallback> const& wrapped,
33  std::function<void()> const& precall_hook);
34 
35  LockableCallbackWrapper(std::shared_ptr<LockableCallback> const& wrapped,
36  std::function<void()> const& precall_hook,
37  std::function<void()> const& postcall_hook);
38 
39  void operator()() override;
40  void lock() override;
41  void unlock() override;
42 
43 private:
44  std::shared_ptr<LockableCallback> wrapped_callback;
45  std::function<void()> precall_hook;
46  std::function<void()> postcall_hook;
47 };
48 
49 }
50 
51 #endif
All things Mir.
Definition: atomic_callback.h:25
Definition: lockable_callback_wrapper.h:29
void unlock() override
Definition: lockable_callback_wrapper.cpp:50
void operator()() override
Definition: lockable_callback_wrapper.cpp:38
LockableCallbackWrapper(std::shared_ptr< LockableCallback > const &wrapped, std::function< void()> const &precall_hook)
Definition: lockable_callback_wrapper.cpp:31
void lock() override
Definition: lockable_callback_wrapper.cpp:45
Definition: lockable_callback.h:25

Copyright © 2012-2015 Canonical Ltd.
Generated on Wed Mar 30 00:29:56 UTC 2016