oputoptv.cpp 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*====================================================================*
  2. *
  3. * oputoptv.cpp - oputoptv class definition;
  4. *
  5. * impelement a standard means of program help menu display;
  6. *
  7. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  8. * Copyright 2001-2006 by Charles Maier Associates;
  9. * Licensed under the Internet Software Consortium License;
  10. *
  11. *--------------------------------------------------------------------*/
  12. #ifndef oPUTOPTV_SOURCE
  13. #define oPUTOPTV_SOURCE
  14. /*====================================================================*
  15. * custom header files;
  16. *--------------------------------------------------------------------*/
  17. #include <iostream>
  18. #include <cstdlib>
  19. /*====================================================================*
  20. * custom header files;
  21. *--------------------------------------------------------------------*/
  22. #include "../classes/ogetoptv.hpp"
  23. #include "../classes/oputoptv.hpp"
  24. /*====================================================================*
  25. *
  26. * oputoptv & print (char const * optv []);
  27. *
  28. * print help summary on stderr as defined by string vestor optv;
  29. *
  30. * program_name is defined in ogetopt::getoptv() but it could be
  31. * defined in main or another component;
  32. *
  33. * ogetoptv.hpp is included for the GETOPTV_C_OPTIONS which is
  34. * normally '-' but it could be anything;
  35. *
  36. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  37. * Copyright 2001-2006 by Charles Maier Associates;
  38. * Licensed under the Internet Software Consortium License;
  39. *
  40. *--------------------------------------------------------------------*/
  41. oputoptv & oputoptv::print (char const * optv [])
  42. {
  43. extern char const * program_name;
  44. std::cout << "\n";
  45. std::cout << " purpose: " << optv [oPUTOPTV_I_PURPOSE] << std::endl << std::endl;
  46. std::cout << " command: " << program_name << " [options] " << optv [oPUTOPTV_I_COMMAND] << std::endl << std::endl;
  47. std::cout << " options: [" << optv [oPUTOPTV_I_OPTIONS] << "?!]" << std::endl << std::endl;
  48. for (int index = oPUTOPTV_I_DETAILS; optv [index] != (char *) (0); index++)
  49. {
  50. std::cout << " " << oGETOPTV_C_OPTIONS << optv [index] << std::endl;
  51. }
  52. std::cout << " " << oGETOPTV_C_OPTIONS << oGETOPTV_C_VERSION << "\tversion information" << std::endl;
  53. std::cout << " " << oGETOPTV_C_OPTIONS << oGETOPTV_C_SUMMARY << "\thelp summary" << std::endl << std::endl;
  54. return (*this);
  55. }
  56. /*====================================================================*
  57. *
  58. * oputoptv & print (char const * optv[], signed exitcode);
  59. *
  60. * print optv vector on stderr; this presents the user with a help
  61. * summary; program_name is defined in ogetoptv::getoptv() but it could be
  62. * defined in main or another component; getoptv.h is included above
  63. * for GETOPTV_C_OPTIONS which is normally '-' but could be anything;
  64. *
  65. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  66. * Copyright 2001-2006 by Charles Maier Associates;
  67. * Licensed under the Internet Software Consortium License;
  68. *
  69. *--------------------------------------------------------------------*/
  70. oputoptv & oputoptv::print (char const * optv [], signed exitcode)
  71. {
  72. oputoptv::print (optv);
  73. std::exit (exitcode);
  74. }
  75. /*====================================================================*
  76. *
  77. * oputoptv ();
  78. *
  79. *--------------------------------------------------------------------*/
  80. oputoptv::oputoptv ()
  81. {
  82. return;
  83. }
  84. /*====================================================================*
  85. *
  86. * ~oputoptv ();
  87. *
  88. *--------------------------------------------------------------------*/
  89. oputoptv::~oputoptv ()
  90. {
  91. return;
  92. }
  93. /*====================================================================*
  94. * end definition;
  95. *--------------------------------------------------------------------*/
  96. #endif