A simple C++ library handling XML parsing of systems following the System Structure and Parameterization standard.
simple-ssp-parser uses conan under-the-hood for managing dependencies:
pip install conan
Then call CMake as usual.
simple-ssp-parser
is available through the conan remote ais:
conan remote add ais https://ais.jfrog.io/artifactory/api/conan/ais-conan-local
Then add a dependency to:
simple-ssp-parser/<version>@ais/stable
(stable channel -> releases)
simple-ssp-parser/<version>@ais/testing
(development builds -> master)
simple-ssp-parser/<version>@ais/testing-<branch>
(development builds -> branches)
#include <ssp/ssp.hpp>
// Zipped .ssp archive
const std::string sspArchive = "../folder/mySystem.ssp";
SystemStructureDescription desc(sspArchive);
// Non-zipped folder
const std::string sspFolder = "../someFolder";
SystemStructureDescription desc(sspFolder);