MCPcopy Create free account
hub / github.com/Audio4Linux/JDSP4Linux / checkParams

Method checkParams

3rdparty/qtcsv-qt5/sources/reader.cpp:183–192  ·  view source on GitHub ↗

Check if file path and separator are valid @input: - separator - string or character that separate values in a row @output: - bool - True if file path and separator are valid, otherwise False

Source from the content-addressed store, hash-verified

181// @output:
182// - bool - True if file path and separator are valid, otherwise False
183bool ReaderPrivate::checkParams(const QString& separator)
184{
185 if (separator.isEmpty())
186 {
187 qDebug() << __FUNCTION__ << "Error - separator could not be empty";
188 return false;
189 }
190
191 return true;
192}
193
194// Split string to elements
195// @input:

Callers

nothing calls this directly

Calls 1

isEmptyMethod · 0.45

Tested by

no test coverage detected