Prints the supported SBML Levels and Versions for this copy of libSBML.
#include <iostream>
#include <vector>
#include <string>
int
main (int argc, char* argv[])
{
for (
unsigned int i = 0; i < supported->
getSize(); i++)
{
cout <<
"\tSBML Level " << current->
getLevel() <<
" Version: " << current->
getVersion() << endl;
}
cout << endl;
cout << "LibSBML is compiled against: " << endl;
cout << endl;
return 0;
}