1
0
forked from Alepha/Alepha

Add ability to get the current delimiter in a stream.

This commit is contained in:
2023-10-29 05:57:49 -04:00
parent 4d88f7cb75
commit 1fc1c8daac

View File

@ -70,6 +70,12 @@ namespace Alepha::Hydrogen::IOStreams ::detail:: delimiters
{
return FieldDelimiterState::Setter{ delim };
}
const auto &
getFieldDelimiter( std::ios_base &ios )
{
return FieldDelimiterState::get( ios );
}
}
inline const int recordIndex= std::ios::xalloc();