MCPcopy Create free account
hub / github.com/OpenPathGuidingLibrary/openpgl / ToCSVString

Method ToCSVString

openpgl/include/openpgl/cpp/FieldStatistics.h:94–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92}
93
94OPENPGL_INLINE std::string FieldStatistics::ToCSVString() const
95{
96 OPENPGL_ASSERT(m_fieldStatisticsHandle);
97 PGLString pglString = pglFieldStatisticsToCSVString(m_fieldStatisticsHandle);
98 std::string str = "";
99 if (pglString.m_str)
100 str = std::string(pglString.m_str);
101
102 pglReleaseString(pglString);
103
104 return str;
105}
106} // namespace cpp
107} // namespace openpgl

Callers

nothing calls this directly

Calls 2

pglReleaseStringFunction · 0.85

Tested by

no test coverage detected