summaryrefslogtreecommitdiffstats
path: root/libkmime/kmime_headers.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:46 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-06 11:17:04 +0900
commitd6705bac5da767ff271b66c0f01ff6ed6352515e (patch)
treea617f12381b078079df41f885e42af386439cea7 /libkmime/kmime_headers.h
parent8973dc76ab93ba7acb94478a37f480762a82f19d (diff)
downloadtdepim-d6705bac5da767ff271b66c0f01ff6ed6352515e.tar.gz
tdepim-d6705bac5da767ff271b66c0f01ff6ed6352515e.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libkmime/kmime_headers.h')
-rw-r--r--libkmime/kmime_headers.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/libkmime/kmime_headers.h b/libkmime/kmime_headers.h
index 02d0ad6a..0b17cbb1 100644
--- a/libkmime/kmime_headers.h
+++ b/libkmime/kmime_headers.h
@@ -108,7 +108,7 @@ mk_parsing_subclass_with_name( subclass, subclass, baseclass )
/** Baseclass of all header-classes. It represents a
header-field as described in RFC-822. */
-class KDE_EXPORT Base {
+class TDE_EXPORT Base {
public:
typedef TQPtrList<Base> List;
@@ -213,7 +213,7 @@ namespace Generics {
// known issues:
// - uses old decodeRFC2047String function, instead of our own...
-class KDE_EXPORT GUnstructured : public Base {
+class TDE_EXPORT GUnstructured : public Base {
public:
GUnstructured() : Base() {}
@@ -266,7 +266,7 @@ private:
@author Marc Mutz <mutz@kde.org>
*/
-class KDE_EXPORT GStructured : public Base {
+class TDE_EXPORT GStructured : public Base {
public:
GStructured() : Base() {}
GStructured( Content * p ) : Base( p ) {}
@@ -300,7 +300,7 @@ protected:
};
-class KDE_EXPORT GAddress : public GStructured {
+class TDE_EXPORT GAddress : public GStructured {
public:
GAddress() : GStructured() {}
GAddress( Content * p ) : GStructured( p ) {}
@@ -316,7 +316,7 @@ protected:
/** Base class for headers that deal with (possibly multiple)
addresses, but don't allow groups: */
-class KDE_EXPORT MailboxList : public GAddress {
+class TDE_EXPORT MailboxList : public GAddress {
public:
MailboxList() : GAddress() {}
MailboxList( Content * p ) : GAddress( p ) {}
@@ -340,7 +340,7 @@ mk_parsing_subclass(SingleMailbox,MailboxList);
/** Base class for headers that deal with (possibly multiple)
addresses, allowing groups. */
-class KDE_EXPORT AddressList : public GAddress {
+class TDE_EXPORT AddressList : public GAddress {
public:
AddressList() : GAddress() {}
AddressList( Content * p ) : GAddress( p ) {}
@@ -358,7 +358,7 @@ protected:
};
/** Base class for headers which deal with a list of msg-id's */
-class KDE_EXPORT GIdent : public GAddress {
+class TDE_EXPORT GIdent : public GAddress {
public:
GIdent() : GAddress() {}
GIdent( Content * p ) : GAddress( p ) {}
@@ -379,7 +379,7 @@ protected:
mk_parsing_subclass(GSingleIdent,GIdent);
/** Base class for headers which deal with a single atom. */
-class KDE_EXPORT GToken : public GStructured {
+class TDE_EXPORT GToken : public GStructured {
public:
GToken() : GStructured() {}
GToken( Content * p ) : GStructured( p ) {}
@@ -396,7 +396,7 @@ protected:
};
-class KDE_EXPORT GPhraseList : public GStructured {
+class TDE_EXPORT GPhraseList : public GStructured {
public:
GPhraseList() : GStructured() {}
GPhraseList( Content * p ) : GStructured( p ) {}
@@ -412,7 +412,7 @@ protected:
TQStringList mPhraseList;
};
-class KDE_EXPORT GDotAtom : public GStructured {
+class TDE_EXPORT GDotAtom : public GStructured {
public:
GDotAtom() : GStructured() {}
GDotAtom( Content * p ) : GStructured( p ) {}
@@ -428,7 +428,7 @@ protected:
TQString mDotAtom;
};
-class KDE_EXPORT GParametrized : public GStructured {
+class TDE_EXPORT GParametrized : public GStructured {
public:
GParametrized() : GStructured() {}
GParametrized( Content * p ) : GStructured( p ) {}
@@ -444,7 +444,7 @@ protected:
private:
};
-class KDE_EXPORT GContentType : public GParametrized {
+class TDE_EXPORT GContentType : public GParametrized {
public:
GContentType() : GParametrized() {}
GContentType( Content * p ) : GParametrized( p ) {}
@@ -462,7 +462,7 @@ protected:
};
-class KDE_EXPORT GCISTokenWithParameterList : public GParametrized {
+class TDE_EXPORT GCISTokenWithParameterList : public GParametrized {
public:
GCISTokenWithParameterList() : GParametrized() {}
GCISTokenWithParameterList( Content * p ) : GParametrized( p ) {}
@@ -489,7 +489,7 @@ protected:
/** Represents the Return-Path header field. */
-class KDE_EXPORT ReturnPath : public Generics::GAddress {
+class TDE_EXPORT ReturnPath : public Generics::GAddress {
public:
ReturnPath() : Generics::GAddress() {}
ReturnPath( Content * p ) : Generics::GAddress( p ) {}
@@ -565,7 +565,7 @@ mk_trivial_subclass_with_name(ContentDisposition,Content-Disposition,
Adds a type over GUnstructured.
@see GUnstructured
*/
-class KDE_EXPORT Generic : public Generics::GUnstructured {
+class TDE_EXPORT Generic : public Generics::GUnstructured {
public:
Generic() : Generics::GUnstructured(), t_ype(0) {}
@@ -591,7 +591,7 @@ class KDE_EXPORT Generic : public Generics::GUnstructured {
/** Represents a "Subject" header */
-class KDE_EXPORT Subject : public Generics::GUnstructured {
+class TDE_EXPORT Subject : public Generics::GUnstructured {
public:
Subject() : Generics::GUnstructured() {}
@@ -610,7 +610,7 @@ class KDE_EXPORT Subject : public Generics::GUnstructured {
};
/** Represents a "Organization" header */
-class KDE_EXPORT Organization : public Generics::GUnstructured {
+class TDE_EXPORT Organization : public Generics::GUnstructured {
public:
Organization() : Generics::GUnstructured() {}
@@ -634,7 +634,7 @@ class KDE_EXPORT Organization : public Generics::GUnstructured {
/** Represents a "Control" header */
-class KDE_EXPORT Control : public Base {
+class TDE_EXPORT Control : public Base {
public:
Control() : Base() {}
@@ -659,7 +659,7 @@ class KDE_EXPORT Control : public Base {
};
/** Represents a "Date" header */
-class KDE_EXPORT Date : public Base {
+class TDE_EXPORT Date : public Base {
public:
Date() : Base(), t_ime(0) {}
@@ -690,7 +690,7 @@ class KDE_EXPORT Date : public Base {
/** Represents a "Newsgroups" header */
-class KDE_EXPORT Newsgroups : public Base {
+class TDE_EXPORT Newsgroups : public Base {
public:
Newsgroups() : Base() {}
@@ -718,7 +718,7 @@ class KDE_EXPORT Newsgroups : public Base {
/** Represents a "Followup-To" header */
-class KDE_EXPORT FollowUpTo : public Newsgroups {
+class TDE_EXPORT FollowUpTo : public Newsgroups {
public:
FollowUpTo() : Newsgroups() {}
@@ -733,7 +733,7 @@ class KDE_EXPORT FollowUpTo : public Newsgroups {
/** Represents a "Lines" header */
-class KDE_EXPORT Lines : public Base {
+class TDE_EXPORT Lines : public Base {
public:
Lines() : Base(),l_ines(-1) {}
@@ -762,7 +762,7 @@ class KDE_EXPORT Lines : public Base {
/** Represents a "User-Agent" header */
-class KDE_EXPORT UserAgent : public Base {
+class TDE_EXPORT UserAgent : public Base {
public:
UserAgent() : Base() {}