Make cycle time optional

This commit is contained in:
G.K.MacGregor
2023-09-12 14:58:22 +01:00
parent a4680326f0
commit 3048e4dbc6
5 changed files with 44 additions and 24 deletions

View File

@@ -55,6 +55,8 @@ public:
int maxEnhancements() const { return 208; };
/* void setSubPageNumber(int); */
int cycleOn() const { return m_cycleOn; };
void setCycleOn(int cycleOn);
int cycleValue() const { return m_cycleValue; };
void setCycleValue(int newValue);
CycleTypeEnum cycleType() const { return m_cycleType; };
@@ -107,6 +109,7 @@ public:
private:
unsigned char m_level1Page[25][40];
/* int m_subPageNumber; */
bool m_cycleOn;
int m_cycleValue;
CycleTypeEnum m_cycleType;
int m_defaultCharSet, m_defaultNOS, m_secondCharSet, m_secondNOS;