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
2016-09-28 12:16:45 +02:00

23 lines
319 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 getenv("DIRECTORY_DOWNLOADS");
#else
return "/apps/android/workspace/YASMIN_DATA/";
#endif
}
};
#endif // IPINHELPER_H