From 1fd518d1c2b1d4e88ad88218b606a284b7128107 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Mon, 16 Oct 2017 11:19:23 -0400 Subject: Added length field to form table This commit contains a database update. --- generator/form.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'generator/form.h') diff --git a/generator/form.h b/generator/form.h index 5576035..5a2de30 100644 --- a/generator/form.h +++ b/generator/form.h @@ -43,6 +43,11 @@ namespace verbly { return proper_; } + int getLength() const + { + return length_; + } + std::set getPronunciations() const { return pronunciations_; @@ -56,6 +61,7 @@ namespace verbly { const std::string text_; const int complexity_; const bool proper_; + const int length_; std::set pronunciations_; -- cgit 1.4.1