~ubuntu-branches/ubuntu/vivid/mir/vivid

« back to all changes in this revision

Viewing changes to src/server/frontend/message_sender.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-02-04 14:49:07 UTC
  • mto: This revision was merged to the branch mainline in revision 61.
  • Revision ID: package-import@ubuntu.com-20140204144907-o3ruhix0ey26lchl
Tags: upstream-0.1.4+14.04.20140204
ImportĀ upstreamĀ versionĀ 0.1.4+14.04.20140204

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#ifndef MIR_FRONTEND_MESSAGE_SENDER_H_
19
19
#define MIR_FRONTEND_MESSAGE_SENDER_H_
20
20
 
21
 
#include "fd_sets.h"
 
21
#include "mir/frontend/fd_sets.h"
22
22
 
23
 
#include <vector>
24
 
#include <boost/asio.hpp>
 
23
#include <string>
25
24
 
26
25
namespace mir
27
26
{
32
31
class MessageSender
33
32
{
34
33
public:
35
 
    virtual void send(std::string const& body) = 0;
36
34
    virtual void send(std::string const& body, FdSets const& fds) = 0;
37
35
 
38
36
protected: