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