Mir
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
message_sender.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2012 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 3,
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Alan Griffiths <alan@octopull.co.uk>
17  */
18 #ifndef MIR_FRONTEND_MESSAGE_SENDER_H_
19 #define MIR_FRONTEND_MESSAGE_SENDER_H_
20 
21 #include "mir/frontend/fd_sets.h"
22 
23 #include <sys/types.h>
24 
25 namespace mir
26 {
27 namespace frontend
28 {
29 namespace detail
30 {
32 {
33 public:
34  virtual void send(char const* data, size_t length, FdSets const& fds) = 0;
35 
36 protected:
37  MessageSender() = default;
38  virtual ~MessageSender() = default;
39  MessageSender(MessageSender const&) = delete;
40  MessageSender& operator=(MessageSender const&) = delete;
41 };
42 
43 }
44 }
45 }
46 #endif /* MIR_FRONTEND_MESSAGE_SENDER_H_ */
MessageSender & operator=(MessageSender const &)=delete
All things Mir.
Definition: aging_buffer.h:24
Definition: message_sender.h:31
std::initializer_list< std::vector< Fd > > FdSets
Definition: fd_sets.h:31
virtual void send(char const *data, size_t length, FdSets const &fds)=0

Copyright © 2012,2013 Canonical Ltd.
Generated on Fri Oct 10 14:07:14 UTC 2014