~mterry/mir/session-for-surface

« back to all changes in this revision

Viewing changes to include/server/mir/event_queue.h

  • Committer: Daniel van Vugt
  • Date: 2013-04-24 05:22:20 UTC
  • mfrom: (628 trunk)
  • mto: This revision was merged to the branch mainline in revision 629.
  • Revision ID: daniel.van.vugt@canonical.com-20130424052220-qhpyhw2resxzr7bq
Merge latest lp:mir

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License version 3 as
 
6
 * 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: Daniel van Vugt <daniel.van.vugt@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef MIR_EVENT_QUEUE_H_
 
20
#define MIR_EVENT_QUEUE_H_
 
21
 
 
22
#include "mir_toolkit/event.h"
 
23
#include "mir/event_sink.h"
 
24
#include <memory>
 
25
 
 
26
namespace mir
 
27
{
 
28
class EventQueue : public EventSink
 
29
{
 
30
public:
 
31
    void set_target(std::weak_ptr<EventSink> const& s);
 
32
    void handle_event(MirEvent const& e) override;
 
33
 
 
34
private:
 
35
    std::weak_ptr<EventSink> target;
 
36
};
 
37
 
 
38
} // namespace mir
 
39
 
 
40
#endif