GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
GpgCommandExecutor.h
1 
29 #ifndef GPGFRONTEND_ZH_CN_TS_GPGCOMMANDEXECUTOR_H
30 #define GPGFRONTEND_ZH_CN_TS_GPGCOMMANDEXECUTOR_H
31 
32 #ifndef WINDOWS
33 #include <boost/process.hpp>
34 #endif
35 
36 #include "core/GpgContext.h"
37 #include "core/GpgFunctionObject.h"
38 
39 namespace GpgFrontend {
40 
45 class GPGFRONTEND_CORE_EXPORT GpgCommandExecutor
46  : public SingletonFunctionObject<GpgCommandExecutor> {
47  public:
53  explicit GpgCommandExecutor(
55 
56 #ifndef WINDOWS
57 
64  void Execute(StringArgsRef arguments,
65  const std::function<void(boost::process::async_pipe &in,
66  boost::process::async_pipe &out)>
67  &interact_func);
68 #endif
69 
70  private:
73 };
74 
75 } // namespace GpgFrontend
76 
77 #endif // GPGFRONTEND_ZH_CN_TS_GPGCOMMANDEXECUTOR_H
Extra commands related to GPG.
Definition: GpgCommandExecutor.h:46
Definition: GpgContext.h:60
Definition: GpgFunctionObject.h:148
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:239
Definition: CoreCommonUtil.cpp:29