123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #ifndef oPUTOPTV_HEADER
- #define oPUTOPTV_HEADER
- #include "../classes/stdafx.hpp"
- #define oPUTOPTV_I_OPTIONS 0
- #define oPUTOPTV_I_COMMAND 1
- #define oPUTOPTV_I_PURPOSE 2
- #define oPUTOPTV_I_DETAILS 3
- #define oPUTOPTV_S_DEVICE "[device] [device] [...] [> stdout]"
- #define oPUTOPTV_S_FILTER "[file] [file] [...] or [< stdin] [> stdout]"
- #define oPUTOPTV_S_FUNNEL "[file] [file] [...] [> stdout]"
- #define oPUTOPTV_S_SEARCH "[dev:][dir][file[;file...]] [file[;file...]] [>stdout]"
- #define oPUTOPTV_S_DIVINE "[> stdout]"
- class __declspec (dllexport) oputoptv
- {
- public:
- oputoptv ();
- virtual ~ oputoptv ();
- oputoptv & print (char const *optv []);
- oputoptv & print (char const *optv [], signed exitcode);
- };
- #endif
|