Skip to content
Snippets Groups Projects

New schema for the GeoModel SQLite database and updated I/O

Merged Riccardo Maria Bianchi requested to merge NewDBSchemaAndIO into main
106 files
+ 6931
2373
Compare changes
  • Side-by-side
  • Inline
Files
106
@@ -28,6 +28,8 @@ namespace GeoStrUtils{
/// @return
std::string resolveEnviromentVariables(const std::string_view str);
std::string getEnvVar(const std::string_view key);
/// @brief returns the longest substring that's common between the
/// two given strings starting from character 0
std::string_view longestCommonString(const std::string_view firstStr,
@@ -61,6 +63,10 @@ namespace GeoStrUtils{
template <class ObjType> std::string chainUp(const std::vector<ObjType>& vector,
const std::string_view glue =";");
/// Function to set the precision of the conversion from double to string
std::string to_string_with_precision(const double a_value, const unsigned n = 16);
void printStdVectorStrings(const std::vector<std::string> vec);
}
#include "GeoModelHelpers/StringUtils.icc"
#endif
\ No newline at end of file
Loading