MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / OutputHandler

Class OutputHandler

cppcryptfs/ui/MountPropertyPage.h:38–49  ·  view source on GitHub ↗

helper class for responses to command line usage

Source from the content-addressed store, hash-verified

36
37// helper class for responses to command line usage
38class OutputHandler {
39private:
40 bool m_have_console;
41 wstring m_output_str;
42 vector<wchar_t> m_buf;
43 HANDLE m_hPipe = INVALID_HANDLE_VALUE;
44public:
45 OutputHandler(HANDLE hPipe);
46 virtual ~OutputHandler();
47 bool have_pipe() { return m_hPipe != INVALID_HANDLE_VALUE && m_hPipe != NULL; }
48 int print(int type, const wchar_t* fmt, ...);
49};
50
51// CMountPropertyPage dialog
52

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected