MCPcopy Create free account
hub / github.com/arrayfire/forge / fg_retain_chart

Function fg_retain_chart

src/api/c/chart.cpp:40–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38}
39
40fg_err fg_retain_chart(fg_chart* pOut, fg_chart pChart)
41{
42 try {
43 ARG_ASSERT(1, (pChart!=0));
44
45 common::Chart* temp = new common::Chart(pChart);
46 *pOut = getHandle(temp);
47 }
48 CATCHALL
49
50 return FG_ERR_NONE;
51}
52
53fg_err fg_release_chart(fg_chart pChart)
54{

Callers 1

ChartMethod · 0.85

Calls 1

getHandleFunction · 0.85

Tested by

no test coverage detected