oputoptv.hpp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*====================================================================*
  2. *
  3. * oputoptv.hpp - interface for the oputoptv class.
  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_HEADER
  13. #define oPUTOPTV_HEADER
  14. /*====================================================================*
  15. * custom header files;
  16. *--------------------------------------------------------------------*/
  17. #include "../classes/stdafx.hpp"
  18. /*====================================================================*
  19. * string vector indexes;
  20. *--------------------------------------------------------------------*/
  21. #define oPUTOPTV_I_OPTIONS 0
  22. #define oPUTOPTV_I_COMMAND 1
  23. #define oPUTOPTV_I_PURPOSE 2
  24. #define oPUTOPTV_I_DETAILS 3
  25. /*====================================================================*
  26. * standard strings;
  27. *--------------------------------------------------------------------*/
  28. #define oPUTOPTV_S_DEVICE "[device] [device] [...] [> stdout]"
  29. #define oPUTOPTV_S_FILTER "[file] [file] [...] or [< stdin] [> stdout]"
  30. #define oPUTOPTV_S_FUNNEL "[file] [file] [...] [> stdout]"
  31. #define oPUTOPTV_S_SEARCH "[dev:][dir][file[;file...]] [file[;file...]] [>stdout]"
  32. #define oPUTOPTV_S_DIVINE "[> stdout]"
  33. /*====================================================================*
  34. * class declaration;
  35. *--------------------------------------------------------------------*/
  36. class __declspec (dllexport) oputoptv
  37. {
  38. public:
  39. oputoptv ();
  40. virtual ~ oputoptv ();
  41. oputoptv & print (char const *optv []);
  42. oputoptv & print (char const *optv [], signed exitcode);
  43. };
  44. /*====================================================================*
  45. * end definitions and declaration;
  46. *--------------------------------------------------------------------*/
  47. #endif