You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
459 B

  1. #pragma once
  2. #include <cppargs/group/group.h>
  3. namespace cppargs
  4. {
  5. struct simple_group
  6. : public group
  7. {
  8. public:
  9. /**
  10. * @brief Constructor.
  11. *
  12. * @param[in] p_meta Meta data of the group.
  13. * @param[in] p_args Sub groups and options.
  14. */
  15. template<typename... T_args>
  16. inline simple_group(
  17. const group_meta& p_meta,
  18. T_args&&... p_args);
  19. };
  20. }