ContentLineAnalyzer: Add getter for skip_partial

This commit is contained in:
Arne Welzel 2024-07-04 11:35:28 +02:00
parent 42a451c2e3
commit c6368fc3f0

View file

@ -22,6 +22,9 @@ public:
// If enabled, flag (first) line with embedded NUL. Default off. // If enabled, flag (first) line with embedded NUL. Default off.
void SetIsNULSensitive(bool enable) { flag_NULs = enable; } void SetIsNULSensitive(bool enable) { flag_NULs = enable; }
// Returns true if skipping data above a hole.
bool SkipPartial() const { return skip_partial; }
// If enabled, skip data above a hole. Default off. // If enabled, skip data above a hole. Default off.
void SetSkipPartial(bool enable) { skip_partial = enable; } void SetSkipPartial(bool enable) { skip_partial = enable; }