blob: 11ede4d0d70db4f2f6bd33a882e7aee7c3a389e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* External objects file */
#include "Flowsheet_model.h"
#if defined(__cplusplus)
extern "C" {
#endif
void Flowsheet_callExternalObjectDestructors(DATA *data, threadData_t *threadData)
{
if(data->simulationInfo->extObjs)
{
free(data->simulationInfo->extObjs);
data->simulationInfo->extObjs = 0;
}
}
#if defined(__cplusplus)
}
#endif
|