1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: the FbcAssociation header has to be included in the matlab
bindings, as they use the FbcAssociation class
Author: Pierre Gruet <pgt@debian.org>
Forwarded: https://github.com/sbmlteam/libsbml/issues/282
Last-Update: 2022-11-26
--- a/src/bindings/matlab/StructureFields.cpp
+++ b/src/bindings/matlab/StructureFields.cpp
@@ -9,6 +9,9 @@
#include <sbml/extension/SBasePlugin.h>
#include <sbml/extension/SBMLExtensionRegistry.h>
+#ifdef USE_FBC
+#include <sbml/packages/fbc/sbml/FbcAssociation.h>
+#endif
#ifdef USE_OCTAVE
// this function is not implemented in octave
|