removed deprecated flags completely
This commit is contained in:
parent
95684006ac
commit
2440440353
@ -42,12 +42,8 @@ static int noOutput = 0; //BOOLEAN FOR NOT PRINTING OUTPUT WHEN ENCRYPTING/DECRY
|
||||
|
||||
//GETTERS
|
||||
int getKeyLength();
|
||||
DEPRECATED int getSkipCheck();
|
||||
DEPRECATED int getNoOutput();
|
||||
|
||||
//SETTERS
|
||||
void setKeyLength(int keyLengthNew);
|
||||
DEPRECATED void setSkipCheck(int skipCheckNew);
|
||||
DEPRECATED void setNoOutput(int noOutputNew);
|
||||
|
||||
#endif
|
||||
|
@ -1,15 +1,5 @@
|
||||
#include <why2/flags.h>
|
||||
|
||||
int getSkipCheck()
|
||||
{
|
||||
return skipCheck;
|
||||
}
|
||||
|
||||
void setSkipCheck(int skipCheckNew)
|
||||
{
|
||||
skipCheck = skipCheckNew;
|
||||
}
|
||||
|
||||
int getKeyLength()
|
||||
{
|
||||
return keyLength;
|
||||
@ -19,13 +9,3 @@ void setKeyLength(int keyLengthNew)
|
||||
{
|
||||
keyLength = keyLengthNew;
|
||||
}
|
||||
|
||||
int getNoOutput()
|
||||
{
|
||||
return noOutput;
|
||||
}
|
||||
|
||||
void setNoOutput(int noOutputNew)
|
||||
{
|
||||
noOutput = noOutputNew;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user