This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YASMIN/ipin/IPINHelper.h
kazu 3a1cd1bccc fixed fallback step-logger
moved vap-grouping to settings-file
sanity-checks
2016-10-02 18:28:17 +02:00

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