current revision

This commit is contained in:
2016-09-28 12:16:45 +02:00
parent 075d8bb633
commit d47322e73b
90 changed files with 8228 additions and 606 deletions

22
ipin/IPINHelper.h Normal file
View File

@@ -0,0 +1,22 @@
#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