* garrow_timestamp_parser_get_kind: * @parser: A #GArrowTimestampParser. * * Returns: The kind of this timestamp parser. * * Since: 16.0.0 */
| 114 | * Since: 16.0.0 |
| 115 | */ |
| 116 | const gchar * |
| 117 | garrow_timestamp_parser_get_kind(GArrowTimestampParser *parser) |
| 118 | { |
| 119 | auto arrow_parser = garrow_timestamp_parser_get_raw(parser); |
| 120 | return arrow_parser->kind(); |
| 121 | } |
| 122 | |
| 123 | G_DEFINE_TYPE(GArrowStrptimeTimestampParser, |
| 124 | garrow_strptime_timestamp_parser, |