program_options.hpp 820 B

12345678910111213141516171819202122232425
  1. // Copyright Vladimir Prus 2002.
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // See www.boost.org/libs/program_options for documentation.
  6. #ifndef PROGRAM_OPTIONS_VP_2003_05_19
  7. #define PROGRAM_OPTIONS_VP_2003_05_19
  8. #if defined(_MSC_VER)
  9. #pragma once
  10. #endif
  11. #include <boost/program_options/options_description.hpp>
  12. #include <boost/program_options/positional_options.hpp>
  13. #include <boost/program_options/parsers.hpp>
  14. #include <boost/program_options/variables_map.hpp>
  15. #include <boost/program_options/cmdline.hpp>
  16. #include <boost/program_options/errors.hpp>
  17. #include <boost/program_options/option.hpp>
  18. #include <boost/program_options/value_semantic.hpp>
  19. #include <boost/program_options/version.hpp>
  20. #endif