roadrunner  2.6.0
Fast simulator for SBML models
rrCModelDataUtil.h
1 /*
2  * rrCModelDataUtil.h
3  *
4  * Created on: Aug 8, 2013
5  * Author: andy
6  */
7 
8 #ifndef RRCMODELDATAUTIL_H_
9 #define RRCMODELDATAUTIL_H_
10 
11 #include "rrOSSpecifics.h"
12 #include "rrModelData.h"
13 
14 #include <ostream>
15 
16 namespace rr
17 {
18 
22 RR_DECLSPEC std::ostream& operator<< (std::ostream& os, const ModelData& data);
23 
24 
32 RR_DECLSPEC void initModelData(ModelData &data);
33 
50 void RR_DECLSPEC allocModelDataBuffers(ModelData &data, const std::string& modelName);
51 
56 void RR_DECLSPEC freeModelDataBuffers(ModelData &data);
57 
58 } /* namespace rr */
59 #endif /* RRCMODELDATAUTIL_H_ */
A data structure that is that allows data to be exchanged with running SBML models.
Definition: rrModelData.h:49