~ubuntu-branches/ubuntu/utopic/mir/utopic-proposed

« back to all changes in this revision

Viewing changes to include/server/mir/frontend/connector_report.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-03-10 19:28:46 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: package-import@ubuntu.com-20140310192846-rq9qm3ec26yrelo2
Tags: upstream-0.1.6+14.04.20140310
ImportĀ upstreamĀ versionĀ 0.1.6+14.04.20140310

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    ConnectorReport& operator=(const ConnectorReport&) = delete;
51
51
};
52
52
 
53
 
class NullConnectorReport : public ConnectorReport
54
 
{
55
 
public:
56
 
    void thread_start() override;
57
 
    void thread_end() override;
58
 
    void starting_threads(int count) override;
59
 
    void stopping_threads(int count) override;
60
 
 
61
 
    void creating_session_for(int socket_handle) override;
62
 
    void creating_socket_pair(int server_handle, int client_handle) override;
63
 
 
64
 
    void listening_on(std::string const& endpoint) override;
65
 
 
66
 
    void error(std::exception const& error) override;
67
 
};
68
53
}
69
54
}
70
55