aboutsummaryrefslogtreecommitdiff
path: root/src/line_accumulator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/line_accumulator.h')
-rw-r--r--src/line_accumulator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/line_accumulator.h b/src/line_accumulator.h
index 2ca271c..69b4c74 100644
--- a/src/line_accumulator.h
+++ b/src/line_accumulator.h
@@ -9,7 +9,7 @@ namespace justify {
class LineAccumulator {
public:
- LineAccumulator(const std::uint8_t max_length);
+ LineAccumulator(const std::uint8_t max_length, const std::uint8_t offset);
~LineAccumulator();
std::uint8_t getMissing() const;
@@ -18,6 +18,7 @@ class LineAccumulator {
private:
const std::uint8_t max_length_;
+ const std::uint8_t offset_;
std::uint8_t length_;