24 lines
370 B
C++
24 lines
370 B
C++
#ifndef IPINHELPER_H
|
|
#define IPINHELPER_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
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
|