diff options
Diffstat (limited to 'src/operator-check.cc')
-rw-r--r-- | src/operator-check.cc | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/src/operator-check.cc b/src/operator-check.cc index ee58d8f..045f8b0 100644 --- a/src/operator-check.cc +++ b/src/operator-check.cc @@ -2,30 +2,25 @@ * @file operator-check.cc * @author Implementation of the CHECK command. * @author Andreas Aardal Hanssen - * @date 2002-2005 + * @date 2002-2005 * ----------------------------------------------------------------- **/ -#include <string> - #include "depot.h" #include "mailbox.h" #include "operators.h" -#include "recursivedescent.h" #include "pendingupdates.h" +#include "recursivedescent.h" #include "session.h" +#include <string> + using namespace ::std; using namespace Binc; //---------------------------------------------------------------------- -CheckOperator::CheckOperator(void) -{ -} - +CheckOperator::CheckOperator(void) {} //---------------------------------------------------------------------- -CheckOperator::~CheckOperator(void) -{ -} +CheckOperator::~CheckOperator(void) {} //---------------------------------------------------------------------- const string CheckOperator::getName(void) const @@ -40,14 +35,13 @@ int CheckOperator::getState(void) const } //------------------------------------------------------------------------ -Operator::ProcessResult CheckOperator::process(Depot &depot, - Request &command) +Operator::ProcessResult CheckOperator::process(Depot &depot, Request &command) { Mailbox *mailbox = depot.getSelected(); if (mailbox != 0) - pendingUpdates(mailbox, PendingUpdates::FLAGS - | PendingUpdates::EXISTS - | PendingUpdates::RECENT, true); + pendingUpdates(mailbox, + PendingUpdates::FLAGS | PendingUpdates::EXISTS | PendingUpdates::RECENT, + true); return OK; } @@ -68,4 +62,3 @@ Operator::ParseResult CheckOperator::parse(Request &c_in) const c_in.setName("CHECK"); return ACCEPT; } - |