~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to tests/include/mir/test/doubles/null_event_sink.h

  • Committer: Package Import Robot
  • Author(s): Alexandros Frantzis
  • Date: 2015-10-08 16:12:19 UTC
  • mto: This revision was merged to the branch mainline in revision 109.
  • Revision ID: package-import@ubuntu.com-20151008161219-emk4a1ys51yy0wjb
Tags: upstream-0.17.0+15.10.20151008.2
ImportĀ upstreamĀ versionĀ 0.17.0+15.10.20151008.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include "mir/frontend/event_sink.h"
23
23
 
 
24
#include <memory>
 
25
 
24
26
namespace mir
25
27
{
 
28
namespace frontend
 
29
{
 
30
class MessageSender;
 
31
}
 
32
 
26
33
namespace test
27
34
{
28
35
namespace doubles
35
42
    void send_ping(int32_t) {}
36
43
    void send_buffer(frontend::BufferStreamId, graphics::Buffer&, graphics::BufferIpcMsgType) {}
37
44
};
 
45
 
 
46
std::unique_ptr<frontend::EventSink> null_sink_factory(std::shared_ptr<frontend::MessageSender> const&);
38
47
}
39
48
}
40
49
}