Skip to content

Commit

Permalink
Add concentrationModels to set of mod files generated
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Jul 12, 2018
1 parent f943949 commit b2621e8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/org/neuroml/export/neuron/NeuronWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -3659,6 +3659,11 @@ else if (comp.getComponentType().isOrExtends(NeuroMLElements.BASE_POINT_CURR_COM
generateModForComp(comp);
foundMods = true;
}
else if (comp.getComponentType().isOrExtends(NeuroMLElements.CONC_MODEL_COMP_TYPE))
{
generateModForComp(comp);
foundMods = true;
}
// TODO: more..?

}
Expand Down

0 comments on commit b2621e8

Please sign in to comment.