mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#8196 GRDECL import : Handle multiple items of same value
This commit is contained in:
@@ -51,13 +51,13 @@ public:
|
||||
static std::string_view readLine( const std::string_view& source, const size_t offset, size_t& bytesRead );
|
||||
|
||||
// trim from end of string (right)
|
||||
static void rtrim( std::string& s, const char* t = m_whiteSpace );
|
||||
static void rtrim( std::string_view& s, const char* t = m_whiteSpace );
|
||||
|
||||
// trim from beginning of string (left)
|
||||
static void ltrim( std::string& s, const char* t = m_whiteSpace );
|
||||
static void ltrim( std::string_view& s, const char* t = m_whiteSpace );
|
||||
|
||||
// trim from both ends of string (right then left)
|
||||
static void trim( std::string& s, const char* t = m_whiteSpace );
|
||||
static void trim( std::string_view& s, const char* t = m_whiteSpace );
|
||||
|
||||
// Parse string data for Eclipse keywords
|
||||
static std::vector<RifEclipseKeywordContent> parseStringData( const std::string_view& stringData );
|
||||
|
||||
Reference in New Issue
Block a user