openscad/src/PlatformUtils.h

15 lines
213 B
C++

#ifndef PLATFORMUTILS_H_
#define PLATFORMUTILS_H_
#include <string>
namespace PlatformUtils {
std::string documentsPath();
std::string libraryPath();
bool createLibraryPath();
std::string info();
}
#endif