summaryrefslogtreecommitdiffstats
path: root/libkmime/kmime_header_parsing.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkmime/kmime_header_parsing.h')
-rw-r--r--libkmime/kmime_header_parsing.h60
1 files changed, 30 insertions, 30 deletions
diff --git a/libkmime/kmime_header_parsing.h b/libkmime/kmime_header_parsing.h
index d567e5fe..cf398e61 100644
--- a/libkmime/kmime_header_parsing.h
+++ b/libkmime/kmime_header_parsing.h
@@ -1,4 +1,4 @@
-/* -*- c++ -*-
+/*
kmime_header_parsing.h
This file is part of KMime, the KDE internet mail/usenet news message library.
@@ -38,7 +38,7 @@
#include <time.h>
-#include <tdepimmacros.h>
+#include <kdemacros.h>
template <typename K, typename V> class TQMap;
class TQStringList;
@@ -48,32 +48,32 @@ namespace KMime {
namespace Types {
// for when we can't make up our mind what to use...
- struct KDE_EXPORT TQStringOrTQPair {
+ struct TDE_EXPORT TQStringOrTQPair {
TQStringOrTQPair() : qstring(), qpair(0,0) {}
TQString qstring;
TQPair<const char*,int> qpair;
};
- struct KDE_EXPORT AddrSpec {
+ struct TDE_EXPORT AddrSpec {
TQString asString() const;
TQString localPart;
TQString domain;
};
typedef TQValueList<AddrSpec> AddrSpecList;
- struct KDE_EXPORT Mailbox {
+ struct TDE_EXPORT Mailbox {
TQString displayName;
AddrSpec addrSpec;
};
typedef TQValueList<Mailbox> MailboxList;
- struct KDE_EXPORT Address {
+ struct TDE_EXPORT Address {
TQString displayName;
MailboxList mailboxList;
};
typedef TQValueList<Address> AddressList;
- struct KDE_EXPORT DateTime {
+ struct TDE_EXPORT DateTime {
time_t time; // secs since 1.1.1970, 0:00 UTC/GMT
long int secsEastOfGMT; // timezone
bool timeZoneKnown; // do we know the timezone? (e.g. on -0000)
@@ -98,7 +98,7 @@ namespace HeaderParsing {
@return the decoded string the encoded word represented.
*/
bool parseEncodedWord( const char* & scursor, const char * const send,
- TQString & result, TQCString & language ) KDE_EXPORT;
+ TQString & result, TQCString & language ) TDE_EXPORT;
//
// The parsing squad:
//
@@ -106,34 +106,34 @@ namespace HeaderParsing {
/** You may or may not have already started parsing into the
atom. This function will go on where you left off. */
bool parseAtom( const char* & scursor, const char * const send,
- TQString & result, bool allow8Bit=false ) KDE_EXPORT;
+ TQString & result, bool allow8Bit=false ) TDE_EXPORT;
bool parseAtom( const char* & scursor, const char * const send,
- TQPair<const char*,int> & result, bool allow8Bit=false ) KDE_EXPORT;
+ TQPair<const char*,int> & result, bool allow8Bit=false ) TDE_EXPORT;
/** You may or may not have already started parsing into the
token. This function will go on where you left off. */
bool parseToken( const char* & scursor, const char * const send,
- TQString & result, bool allow8Bit=false ) KDE_EXPORT;
+ TQString & result, bool allow8Bit=false ) TDE_EXPORT;
bool parseToken( const char* & scursor, const char * const send,
- TQPair<const char*,int> & result, bool allow8Bit=false ) KDE_EXPORT;
+ TQPair<const char*,int> & result, bool allow8Bit=false ) TDE_EXPORT;
/** @p scursor must be positioned after the opening openChar. */
bool parseGenericQuotedString( const char* & scursor, const char* const send,
TQString & result, bool isCRLF,
const char openChar='"',
- const char closeChar='"' ) KDE_EXPORT;
+ const char closeChar='"' ) TDE_EXPORT;
/** @p scursor must be positioned right after the opening '(' */
bool parseComment( const char* & scursor, const char * const send,
- TQString & result, bool isCRLF=false, bool reallySave=true ) KDE_EXPORT;
+ TQString & result, bool isCRLF=false, bool reallySave=true ) TDE_EXPORT;
/** You may or may not have already started parsing into the phrase,
but only if it starts with atext. If you setup this function to
parse a phrase starting with an encoded-word or quoted-string,
@p scursor has to point to the char introducing the encoded-word
or quoted-string, resp. */
bool parsePhrase( const char* & scursor, const char * const send,
- TQString & result, bool isCRLF=false ) KDE_EXPORT;
+ TQString & result, bool isCRLF=false ) TDE_EXPORT;
/** You may or may not have already started parsing into the initial
atom, but not up to it's end. */
bool parseDotAtom( const char* & scursor, const char * const send,
- TQString & result, bool isCRLF=false ) KDE_EXPORT;
+ TQString & result, bool isCRLF=false ) TDE_EXPORT;
/** Eats comment-folding-white-space, skips whitespace, folding and
comments (even nested ones) and stops at the next non-CFWS
@@ -144,42 +144,42 @@ namespace HeaderParsing {
scursor is being positioned on the opening '(' of the outmost
comment.
*/
- void eatCFWS( const char* & scursor, const char * const send, bool isCRLF ) KDE_EXPORT;
+ void eatCFWS( const char* & scursor, const char * const send, bool isCRLF ) TDE_EXPORT;
bool parseDomain( const char* & scursor, const char * const send,
- TQString & result, bool isCRLF=false ) KDE_EXPORT;
+ TQString & result, bool isCRLF=false ) TDE_EXPORT;
bool parseObsRoute( const char* & scursor, const char * const send,
TQStringList & result,
- bool isCRLF=false, bool save=false ) KDE_EXPORT;
+ bool isCRLF=false, bool save=false ) TDE_EXPORT;
bool parseAddrSpec( const char* & scursor, const char * const send,
- Types::AddrSpec & result, bool isCRLF=false ) KDE_EXPORT;
+ Types::AddrSpec & result, bool isCRLF=false ) TDE_EXPORT;
bool parseAngleAddr( const char* & scursor, const char * const send,
- Types::AddrSpec & result, bool isCRLF=false ) KDE_EXPORT;
+ Types::AddrSpec & result, bool isCRLF=false ) TDE_EXPORT;
bool parseMailbox( const char* & scursor, const char * const send,
- Types::Mailbox & result, bool isCRLF=false ) KDE_EXPORT;
+ Types::Mailbox & result, bool isCRLF=false ) TDE_EXPORT;
bool parseGroup( const char* & scursor, const char * const send,
- Types::Address & result, bool isCRLF=false ) KDE_EXPORT;
+ Types::Address & result, bool isCRLF=false ) TDE_EXPORT;
bool parseAddress( const char* & scursor, const char * const send,
- Types::Address & result, bool isCRLF=false ) KDE_EXPORT;
+ Types::Address & result, bool isCRLF=false ) TDE_EXPORT;
bool parseAddressList( const char* & scursor, const char * const send,
- Types::AddressList & result, bool isCRLF=false ) KDE_EXPORT;
+ Types::AddressList & result, bool isCRLF=false ) TDE_EXPORT;
bool parseParameter( const char* & scursor, const char * const send,
TQPair<TQString,Types::TQStringOrTQPair> & result,
- bool isCRLF=false ) KDE_EXPORT;
+ bool isCRLF=false ) TDE_EXPORT;
bool parseParameterList( const char* & scursor, const char * const send,
- TQMap<TQString,TQString> & result, bool isCRLF=false ) KDE_EXPORT;
+ TQMap<TQString,TQString> & result, bool isCRLF=false ) TDE_EXPORT;
bool parseRawParameterList( const char* & scursor, const char * const send,
TQMap<TQString,Types::TQStringOrTQPair> & result,
- bool isCRLF=false ) KDE_EXPORT;
+ bool isCRLF=false ) TDE_EXPORT;
bool parseTime( const char* & scursor, const char * const send,
int & hour, int & min, int & sec, long int & secsEastOfGMT,
- bool & timeZoneKnown, bool isCRLF=false ) KDE_EXPORT;
+ bool & timeZoneKnown, bool isCRLF=false ) TDE_EXPORT;
bool parseDateTime( const char* & scursor, const char * const send,
- Types::DateTime & result, bool isCRLF=false ) KDE_EXPORT;
+ Types::DateTime & result, bool isCRLF=false ) TDE_EXPORT;
#if 0
bool tryToMakeAnySenseOfDateString( const char* & scursor,