diff options
Diffstat (limited to 'src/operator-authenticate.cc')
-rw-r--r-- | src/operator-authenticate.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/operator-authenticate.cc b/src/operator-authenticate.cc index 9add74c..045b008 100644 --- a/src/operator-authenticate.cc +++ b/src/operator-authenticate.cc @@ -23,16 +23,16 @@ using namespace Binc; using std::endl; using std::string; -AuthenticateOperator::AuthenticateOperator(void) {} +AuthenticateOperator::AuthenticateOperator() {} -AuthenticateOperator::~AuthenticateOperator(void) {} +AuthenticateOperator::~AuthenticateOperator() {} -const string AuthenticateOperator::getName(void) const +const string AuthenticateOperator::getName() const { return "AUTHENTICATE"; } -int AuthenticateOperator::getState(void) const +int AuthenticateOperator::getState() const { return Session::NONAUTHENTICATED; } |