libSBML C API  libSBML 5.20.4 C API
Loading...
Searching...
No Matches
printSupported.c

Prints the supported SBML Levels and Versions for this copy of libSBML.

Prints the supported SBML Levels and Versions for this copy of libSBML.

/**
* @file printSupported.cpp
* @brief Prints supported SBML Levels and Versions for the LibSBML library
* @author Frank Bergmann
*
* <!--------------------------------------------------------------------------
* This sample program is distributed under a different license than the rest
* of libSBML. This program uses the open-source MIT license, as follows:
*
* Copyright (c) 2013-2018 by the California Institute of Technology
* (California, USA), the European Bioinformatics Institute (EMBL-EBI, UK)
* and the University of Heidelberg (Germany), with support from the National
* Institutes of Health (USA) under grant R01GM070923. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* Neither the name of the California Institute of Technology (Caltech), nor
* of the European Bioinformatics Institute (EMBL-EBI), nor of the University
* of Heidelberg, nor the names of any contributors, may be used to endorse
* or promote products derived from this software without specific prior
* written permission.
* ------------------------------------------------------------------------ -->
*/
#include <stdio.h>
#include <sbml/SBMLTypes.h>
int
main (int argc, char* argv[])
{
int i;
int length;
printf("LibSBML: %s supports: \n", getLibSBMLDottedVersion());
for (i = 0; i < length; i++)
{
SBMLNamespaces_t *current = supported[i];
printf("\tSBML Level %d Version: %d\n"
);
}
printf("\n");
printf("LibSBML is compiled against: \n");
if (isLibSBMLCompiledWith("expat"))
printf("\tExpat: %s\n", getLibSBMLDependencyVersionOf("expat"));
if (isLibSBMLCompiledWith("libxml"))
printf("\tLibXML: %s\n", getLibSBMLDependencyVersionOf("libxml"));
if (isLibSBMLCompiledWith("xerces-c"))
printf("\tXerces-C++: %s\n", getLibSBMLDependencyVersionOf("xerces-c"));
if (isLibSBMLCompiledWith("zlib"))
printf("\tZlib: %s\n", getLibSBMLDependencyVersionOf("zlib"));
if (isLibSBMLCompiledWith("bzip"))
printf("\tbzip2: %s\n", getLibSBMLDependencyVersionOf("bzip"));
printf("\n");
for (i = 0; i < length; i++)
{
SBMLNamespaces_free(supported[i]);
}
free(supported);
return 0;
}
unsigned int SBMLNamespaces_getVersion(SBMLNamespaces_t *sbmlns)
_tGet_t _tthe_t _tSBML_t _tVersion_t _tof_t _tthis_t _tSBMLNamespaces_t_t _tstructure_t.
Definition SBMLNamespaces.cpp:843
void SBMLNamespaces_free(SBMLNamespaces_t *ns)
_tDestroys_t _tthis_t _tSBMLNamespaces_t_t _tstructure_t.
Definition SBMLNamespaces.cpp:826
SBMLNamespaces_t ** SBMLNamespaces_getSupportedNamespaces(int *length)
_tReturns_t _tan_t _tarray_t _tof_t _tSBML_t _tNamespaces_t _tsupported_t _tby_t _tthis_t _tversion_t...
Definition SBMLNamespaces.cpp:878
unsigned int SBMLNamespaces_getLevel(SBMLNamespaces_t *sbmlns)
_tGet_t _tthe_t _tSBML_t _tLevel_t _tof_t _tthis_t _tSBMLNamespaces_t_t _tstructure_t.
Definition SBMLNamespaces.cpp:835
Include all SBML types in a single header file.
const char * getLibSBMLDependencyVersionOf(const char *option)
_tReturns_t _tthe_t _tversion_t _tstring_t _tfor_t _tthe_t _tdependency_t _tlibrary_t _tused_t.
Definition libsbml-version.cpp:158
const char * getLibSBMLDottedVersion()
_tReturns_t _tthe_t _tversion_t _tnumber_t _tof_t _tthis_t _tcopy_t _tof_t _tlibSBML_t _tas_t _ta_t _...
Definition libsbml-version.cpp:79
int isLibSBMLCompiledWith(const char *option)
_tReturns_t _tan_t _tindication_t _twhether_t _tlibSBML_t _thas_t _tbeen_t _tcompiled_t _twith_t _tag...
Definition libsbml-version.cpp:94