Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Ecos-platform/simple-ssp-parser

Repository files navigation

simple-ssp-parser

A simple C++ library handling XML parsing of systems following the System Structure and Parameterization standard.

Building

simple-ssp-parser uses conan under-the-hood for managing dependencies:

pip install conan

Then call CMake as usual.

Installing

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)

Usage

#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);

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published