~hikiko/mir/mir.unity8-desktop-session

« back to all changes in this revision

Viewing changes to include/server/mir/input/input_report.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Daniel van Vugt, Ubuntu daily release
  • Date: 2014-01-08 02:04:38 UTC
  • mfrom: (1.1.54)
  • Revision ID: package-import@ubuntu.com-20140108020438-ikbu7qqm9v2l026y
Tags: 0.1.3+14.04.20140108-0ubuntu1
[ Daniel van Vugt ]
* Preparing for release 0.1.3

[ Ubuntu daily release ]
* Automatic snapshot from revision 1170

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
{
32
32
public:
33
33
    virtual ~InputReport() = default;
34
 
    
 
34
 
35
35
    virtual void received_event_from_kernel(int64_t when, int type, int code, int value) = 0;
36
36
 
37
37
    virtual void published_key_event(int dest_fd, uint32_t seq_id, int64_t event_time) = 0;
39
39
    virtual void published_motion_event(int dest_fd, uint32_t seq_id, int64_t event_time) = 0;
40
40
 
41
41
    virtual void received_event_finished_signal(int src_fd, uint32_t seq_id) = 0;
42
 
    
 
42
 
43
43
protected:
44
44
    InputReport() = default;
45
45
    InputReport(InputReport const&) = delete;