summaryrefslogtreecommitdiffstats
path: root/libkpimidentities
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2015-06-14 04:01:19 +0200
committerSlávek Banko <slavek.banko@axis.cz>2015-06-14 04:02:43 +0200
commitae9fde72adecd2ca03f9d4ff55fc30fef5a09afb (patch)
tree66c9e8436960898ef128ae852ed031cef84dc054 /libkpimidentities
parent3c3dfdfd7ffbd59bc1f089d6f57b179889f57ac8 (diff)
downloadtdepim-ae9fde72adecd2ca03f9d4ff55fc30fef5a09afb.tar.gz
tdepim-ae9fde72adecd2ca03f9d4ff55fc30fef5a09afb.zip
Fix FTBFS with clang
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 4554b6c6fb200addc5fbc833df4f42a65070cdd9)
Diffstat (limited to 'libkpimidentities')
-rw-r--r--libkpimidentities/identity.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libkpimidentities/identity.h b/libkpimidentities/identity.h
index 4d6eeed09..c1af97e15 100644
--- a/libkpimidentities/identity.h
+++ b/libkpimidentities/identity.h
@@ -26,6 +26,12 @@ class TQDataStream;
namespace KPIM {
+KDE_EXPORT TQDataStream & operator<<( TQDataStream & stream, const KPIM::Signature & sig );
+KDE_EXPORT TQDataStream & operator>>( TQDataStream & stream, KPIM::Signature & sig );
+
+KDE_EXPORT TQDataStream & operator<<( TQDataStream & stream, const KPIM::Identity & ident );
+KDE_EXPORT TQDataStream & operator>>( TQDataStream & stream, KPIM::Identity & ident );
+
/**
* @short abstraction of a signature (aka "footer").
* @author Marc Mutz <mutz@kde.org>
@@ -320,12 +326,6 @@ protected:
Kleo::CryptoMessageFormat mPreferredCryptoMessageFormat;
};
-KDE_EXPORT TQDataStream & operator<<( TQDataStream & stream, const KPIM::Signature & sig );
-KDE_EXPORT TQDataStream & operator>>( TQDataStream & stream, KPIM::Signature & sig );
-
-KDE_EXPORT TQDataStream & operator<<( TQDataStream & stream, const KPIM::Identity & ident );
-KDE_EXPORT TQDataStream & operator>>( TQDataStream & stream, KPIM::Identity & ident );
-
} // namespace KPIM
#endif /*kpim_identity_h*/