From 31650bf97f66049d27b1bccd79d9c4149528b7cc Mon Sep 17 00:00:00 2001 From: Brad Hards <bradh@frogmouth.net> Date: Sun, 26 Mar 2006 03:48:42 +0000 Subject: [PATCH] Remove unused QCA_PLUGIN_EXPORT magic, and irrelevant API documentation. CCMAIL:justin@affinix.com svn path=/trunk/kdesupport/qca/; revision=522575 --- include/QtCrypto/qca_export.h | 31 ++++--------------------------- 1 file changed, 4 insertions(+), 27 deletions(-) diff --git a/include/QtCrypto/qca_export.h b/include/QtCrypto/qca_export.h index cca7a579..fdbe7a11 100644 --- a/include/QtCrypto/qca_export.h +++ b/include/QtCrypto/qca_export.h @@ -21,9 +21,11 @@ /** \file qca_export.h - Preprocessor magic to allow export of library symbols. + Preprocessor magic to allow export of library symbols. - \note You should not use this header directly from an + This is strictly internal. + + \note You should not include this header directly from an application. You should just use <tt> \#include \<QtCrypto> </tt> instead. */ @@ -33,13 +35,6 @@ #include <QtGlobal> -/** - \def QCA_EXPORT - - \internal - - Makes this QCA symbol visible. -*/ #ifdef Q_OS_WIN32 # ifndef QCA_STATIC # ifdef QCA_MAKEDLL @@ -53,22 +48,4 @@ # define QCA_EXPORT #endif -/** - \def QCA_PLUGIN_EXPORT - - \internal - - Makes this symbol from a plugin visible. -*/ -#ifdef Q_OS_WIN32 -# ifdef QCA_PLUGIN_DLL -# define QCA_PLUGIN_EXPORT extern "C" __declspec(dllexport) -# else -# define QCA_PLUGIN_EXPORT extern "C" __declspec(dllimport) -# endif -#endif -#ifndef QCA_PLUGIN_EXPORT -# define QCA_PLUGIN_EXPORT extern "C" -#endif - #endif