| 92 | } |
| 93 | |
| 94 | OPENPGL_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 |
nothing calls this directly
no test coverage detected