diff options
Diffstat (limited to 'src/operator-noop.cc')
-rw-r--r-- | src/operator-noop.cc | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/operator-noop.cc b/src/operator-noop.cc index a32214f..bc73a10 100644 --- a/src/operator-noop.cc +++ b/src/operator-noop.cc @@ -1,9 +1,10 @@ -/** -------------------------------------------------------------------- +/** * @file operator-noop.cc * @brief Operator for the NOOP command. * @author Andreas Aardal Hanssen * @date 2002-2005 - * ------------------------------------------------------------------ **/ + */ + #include "depot.h" #include "operators.h" #include "recursivedescent.h" @@ -12,34 +13,27 @@ #include <iostream> #include <string> -using namespace ::std; using namespace Binc; -//---------------------------------------------------------------------- NoopOperator::NoopOperator(void) {} -//---------------------------------------------------------------------- NoopOperator::~NoopOperator(void) {} -//---------------------------------------------------------------------- -const string NoopOperator::getName(void) const +const std::string NoopOperator::getName(void) const { return "NOOP"; } -//---------------------------------------------------------------------- int NoopOperator::getState(void) const { return Session::NONAUTHENTICATED | Session::AUTHENTICATED | Session::SELECTED; } -//---------------------------------------------------------------------- Operator::ProcessResult NoopOperator::process(Depot &depot, Request &command) { return OK; } -//---------------------------------------------------------------------- Operator::ParseResult NoopOperator::parse(Request &c_in) const { Session &session = Session::getInstance(); |