GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
GpgInfo.h
1
29#ifndef GPGFRONTEND_ZH_CN_TS_GPGINFO_H
30#define GPGFRONTEND_ZH_CN_TS_GPGINFO_H
31
32#include <string>
33
34namespace GpgFrontend {
39class GpgInfo {
40 public:
41 std::string AppPath;
42 std::string DatabasePath;
43 std::string GnupgVersion;
44 std::string GpgConfPath;
45 std::string CMSPath;
46 std::string GpgMEVersion;
47};
48} // namespace GpgFrontend
49
50#endif // GPGFRONTEND_ZH_CN_TS_GPGINFO_H
Use to record some info about gnupg.
Definition: GpgInfo.h:39
std::string AppPath
executable binary path of gnupg
Definition: GpgInfo.h:41
Definition: CoreCommonUtil.cpp:29