deprecated skipCheck and noOutput flag

This commit is contained in:
Václav Šmejkal 2022-05-05 18:41:57 +02:00
parent fbd204a89f
commit a02540cf8a

View File

@ -26,17 +26,17 @@
//VARIABLES //VARIABLES
static int keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS < static int keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS <
static int skipCheck = 0; //BOOLEAN FOR SKIPPING VERSION CHECK DEPRECATED static int skipCheck = 0; //BOOLEAN FOR SKIPPING VERSION CHECK
static int noOutput = 0; //BOOLEAN FOR NOT PRINTING OUTPUT WHEN ENCRYPTING/DECRYPTING DEPRECATED static int noOutput = 0; //BOOLEAN FOR NOT PRINTING OUTPUT WHEN ENCRYPTING/DECRYPTING
//GETTERS //GETTERS
int getSkipCheck();
int getKeyLength(); int getKeyLength();
int getNoOutput(); DEPRECATED int getSkipCheck();
DEPRECATED int getNoOutput();
//SETTERS //SETTERS
void setSkipCheck(int skipCheckNew);
void setKeyLength(int keyLengthNew); void setKeyLength(int keyLengthNew);
void setNoOutput(int noOutputNew); DEPRECATED void setSkipCheck(int skipCheckNew);
DEPRECATED void setNoOutput(int noOutputNew);
#endif #endif