~mir-team/mir/trunk

« back to all changes in this revision

Viewing changes to include/shared/mir/events/event_sink.h

  • Committer: Tarmac
  • Author(s): Alan Griffiths
  • Date: 2013-04-25 23:50:01 UTC
  • mfrom: (526.2.22 mir1)
  • Revision ID: tarmac-20130425235001-c3b3x2yyb3eldyx1
frontend, shell, tests: surface-states updated to avoid supplying dependencies through public member functions.

Approved by PS Jenkins bot, Chris Halse Rogers, Robert Ancell, Kevin DuBois.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 * Authored by: Daniel van Vugt <daniel.van.vugt@canonical.com>
17
17
 */
18
18
 
19
 
#ifndef MIR_EVENT_SINK_H_
20
 
#define MIR_EVENT_SINK_H_
 
19
#ifndef MIR_EVENTS_EVENT_SINK_H_
 
20
#define MIR_EVENTS_EVENT_SINK_H_
21
21
 
22
22
#include "mir_toolkit/event.h"
23
23
 
24
24
namespace mir
25
25
{
 
26
namespace events
 
27
{
26
28
 
27
29
class EventSink
28
30
{
36
38
    EventSink(EventSink const&) = delete;
37
39
    EventSink& operator=(EventSink const&) = delete;
38
40
};
39
 
 
 
41
}
40
42
} // namespace mir
41
43
 
42
 
#endif
43
 
 
 
44
#endif // MIR_EVENTS_EVENT_SINK_H_