12345678910111213141516171819202122232425262728293031323334353637383940 |
- #include <kopano/zcdefs.h>
- #include <string>
- namespace KC {
- class ECConfig;
- class _kc_export TmpPath _kc_final {
- private:
- std::string path;
- public:
- _kc_hidden TmpPath(void);
- static TmpPath *getInstance();
- bool OverridePath(ECConfig *const ec);
- _kc_hidden const std::string &getTempPath(void) const { return path; }
- };
- extern TmpPath *tmpPath;
- }
|