Skip to content

Commit

Permalink
Finish implementing --box option for deg tool.
Browse files Browse the repository at this point in the history
  • Loading branch information
craigsapp committed Jan 20, 2023
1 parent 48f86c8 commit eb7c560
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/humlib.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// Programmer: Craig Stuart Sapp <[email protected]>
// Creation Date: Sat Aug 8 12:24:49 PDT 2015
// Last Modified: Thu Jan 19 21:21:56 PST 2023
// Last Modified: Thu Jan 19 21:53:43 PST 2023
// Filename: humlib.h
// URL: https://github.com/craigsapp/humlib/blob/master/include/humlib.h
// Syntax: C++11
Expand Down
3 changes: 2 additions & 1 deletion src/humlib.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// Programmer: Craig Stuart Sapp <[email protected]>
// Creation Date: Sat Aug 8 12:24:49 PDT 2015
// Last Modified: Thu Jan 19 21:21:56 PST 2023
// Last Modified: Thu Jan 19 21:53:43 PST 2023
// Filename: /include/humlib.cpp
// URL: https://github.com/craigsapp/humlib/blob/master/src/humlib.cpp
// Syntax: C++11
Expand Down Expand Up @@ -69006,6 +69006,7 @@ bool Tool_deg::run(HumdrumFile& infile) {
void Tool_deg::initialize(void) {
m_aboveQ = getBoolean("above");
m_arrowQ = getBoolean("arrow");
m_boxQ = getBoolean("box");
m_circleQ = getBoolean("circle");
m_colorQ = getBoolean("color");
m_hatQ = getBoolean("hat");
Expand Down
1 change: 1 addition & 0 deletions src/tool-deg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ bool Tool_deg::run(HumdrumFile& infile) {
void Tool_deg::initialize(void) {
m_aboveQ = getBoolean("above");
m_arrowQ = getBoolean("arrow");
m_boxQ = getBoolean("box");
m_circleQ = getBoolean("circle");
m_colorQ = getBoolean("color");
m_hatQ = getBoolean("hat");
Expand Down

0 comments on commit eb7c560

Please sign in to comment.