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 
14 namespace archetypes {
15 
16 class io_control_command
17 {
18 public:
name() const19   int name() const
20   {
21     return 0;
22   }
23 
data()24   void* data()
25   {
26     return 0;
27   }
28 };
29 
30 } // namespace archetypes
31 
32 #endif // ARCHETYPES_IO_CONTROL_COMMAND_HPP
33