• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D07-Sep-2021623 138

create_nested_task.cppH A D07-Sep-20213.6 KiB10451

create_sedml.cppH A D07-Sep-202110 KiB282184

echo_sedml.cppH A D07-Sep-20212.2 KiB6424

print_sedml.cppH A D07-Sep-202110.1 KiB286227

README.md

1## C++ LibSedML Examples
2
3Examples in this folder contain basic C++ examples that demonstrate the use of the libSedML library using C++. The following examples are present:
4
5### echo_sedml.cpp
6This basic example, just echos a SED-ML document, reading it and writing it again. It takes two arguments, an input file and the output file.
7
8### create_sedml.cpp
9This example constructs an SED-ML document using the C++ API. It takes one argument, the output file name.
10
11### print_sedml.cpp
12This example loads a given SED-ML document and prints an overview of its contents. It takes one argument, the SED-ML document to open.
13