summaryrefslogtreecommitdiff
path: root/src/include/imapparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/imapparser.h')
-rw-r--r--src/include/imapparser.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/include/imapparser.h b/src/include/imapparser.h
index 5dfffb4..737d7c7 100644
--- a/src/include/imapparser.h
+++ b/src/include/imapparser.h
@@ -1,19 +1,18 @@
-/** --------------------------------------------------------------------
+/**
* @file imapparser.h
* @brief Declaration of the common items for parsing IMAP input
* @author Andreas Aardal Hanssen
* @date 2002-2005
- * ----------------------------------------------------------------- **/
+ */
+
#ifndef imapparser_h_included
#define imapparser_h_included
-/* stl includes */
#include <map>
#include <string>
#include <vector>
namespace Binc {
- //------------------------------------------------------------------------
class SequenceSet {
public:
void addRange(unsigned int a_in, unsigned int b_in);
@@ -52,7 +51,6 @@ namespace Binc {
std::vector<Range> internal;
};
- //------------------------------------------------------------------------
class BincImapParserFetchAtt {
public:
std::string type;
@@ -68,7 +66,6 @@ namespace Binc {
std::string toString(void);
};
- //------------------------------------------------------------------------
class BincImapParserSearchKey {
public:
std::string name;
@@ -88,13 +85,11 @@ namespace Binc {
BincImapParserSearchKey(void);
};
- //------------------------------------------------------------------------
class BincImapParserData {
public:
virtual ~BincImapParserData(void) {}
};
- //------------------------------------------------------------------------
class Request {
private:
std::string tag;