#ifndef IPINHELPER_H #define IPINHELPER_H #include class IPINHelper { public: /** get the StepLogger data folder */ static std::string getDataFolder() { #ifdef ANDROID //return std::string(getenv("DIRECTORY_DOWNLOADS")) + "/"; return "/sdcard/Download/"; #else return "/apps/android/workspace/YASMIN_DATA/"; #endif } }; #endif // IPINHELPER_H