1//
2// io_control_command.hpp
3// ~~~~~~~~~~~~~~~~~~~~~~
4//
5// Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6//
7// Distributed under the Boost Software License, Version 1.0. (See accompanying
8// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9//
10
11#ifndef ARCHETYPES_IO_CONTROL_COMMAND_HPP
12#define ARCHETYPES_IO_CONTROL_COMMAND_HPP
13
14namespace archetypes {
15
16class io_control_command
17{
18public:
19 int name() const
20 {
21 return 0;
22 }
23
24 void* data()
25 {
26 return 0;
27 }
28};
29
30} // namespace archetypes
31
32#endif // ARCHETYPES_IO_CONTROL_COMMAND_HPP
33

source code of boost/libs/asio/test/archetypes/io_control_command.hpp