io_control_command.hpp 595 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // io_control_command.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2019 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. #ifndef ARCHETYPES_IO_CONTROL_COMMAND_HPP
  11. #define ARCHETYPES_IO_CONTROL_COMMAND_HPP
  12. namespace archetypes {
  13. class io_control_command
  14. {
  15. public:
  16. int name() const
  17. {
  18. return 0;
  19. }
  20. void* data()
  21. {
  22. return 0;
  23. }
  24. };
  25. } // namespace archetypes
  26. #endif // ARCHETYPES_IO_CONTROL_COMMAND_HPP