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

Method ToString

openpgl/include/openpgl/cpp/FieldStatistics.h:68–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68OPENPGL_INLINE std::string FieldStatistics::ToString() const
69{
70 OPENPGL_ASSERT(m_fieldStatisticsHandle);
71 PGLString pglString = pglFieldStatisticsToString(m_fieldStatisticsHandle);
72 std::string str = "";
73 if (pglString.m_str)
74 str = std::string(pglString.m_str);
75
76 pglReleaseString(pglString);
77
78 return str;
79}
80
81OPENPGL_INLINE std::string FieldStatistics::HeaderCSVString() const
82{

Callers

nothing calls this directly

Calls 2

pglReleaseStringFunction · 0.85

Tested by

no test coverage detected