diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-06-23 12:37:15 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-06-23 12:37:15 -0700 |
commit | 32d9850263ad10be75d967d495e236392fac32a1 (patch) | |
tree | 5476ac5a6c582c4b93920924d79f0fea6bc45b52 /osdep/OSUtils.hpp | |
parent | a5ea8cc5cbf6c9252d02725eed8a7be86d0e71c6 (diff) | |
download | infinitytier-32d9850263ad10be75d967d495e236392fac32a1.tar.gz infinitytier-32d9850263ad10be75d967d495e236392fac32a1.zip |
More new CLI work.
Diffstat (limited to 'osdep/OSUtils.hpp')
-rw-r--r-- | osdep/OSUtils.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/osdep/OSUtils.hpp b/osdep/OSUtils.hpp index 80f7bfe0..25bed9fe 100644 --- a/osdep/OSUtils.hpp +++ b/osdep/OSUtils.hpp @@ -235,6 +235,11 @@ public: */ static inline char toLower(char c) throw() { return (char)OSUtils::TOLOWER_TABLE[(unsigned long)c]; } + /** + * @return Platform default ZeroTier One home path + */ + static std::string platformDefaultHomePath(); + private: static const unsigned char TOLOWER_TABLE[256]; }; |