Fixed visibility attribute position for GCC.

This commit is contained in:
Vincent Richard 2013-06-07 15:10:50 +02:00
parent dfde5a646b
commit 1257f8024c
3 changed files with 7 additions and 7 deletions

View File

@ -60,8 +60,8 @@ public:
// Helpers functions
outputStream& VMIME_EXPORT operator<<(outputStream& os, const string& str);
outputStream& VMIME_EXPORT operator<<(outputStream& os, const stream::value_type c);
VMIME_EXPORT outputStream& operator<<(outputStream& os, const string& str);
VMIME_EXPORT outputStream& operator<<(outputStream& os, const stream::value_type c);
#if defined(_MSC_VER) && (_MSC_VER <= 1200) // Internal compiler error with VC++6

View File

@ -42,7 +42,7 @@ namespace utility {
* @return number of bytes copied
*/
stream::size_type VMIME_EXPORT bufferedStreamCopy(inputStream& is, outputStream& os);
VMIME_EXPORT stream::size_type bufferedStreamCopy(inputStream& is, outputStream& os);
/** Copy data from one stream into another stream using a buffered method
* and copying only a specified range of data.
@ -54,7 +54,7 @@ stream::size_type VMIME_EXPORT bufferedStreamCopy(inputStream& is, outputStream&
* @return number of bytes copied
*/
stream::size_type VMIME_EXPORT bufferedStreamCopyRange(inputStream& is, outputStream& os,
VMIME_EXPORT stream::size_type bufferedStreamCopyRange(inputStream& is, outputStream& os,
const stream::size_type start, const stream::size_type length);
/** Copy data from one stream into another stream using a buffered method
@ -67,7 +67,7 @@ stream::size_type VMIME_EXPORT bufferedStreamCopyRange(inputStream& is, outputSt
* @return number of bytes copied
*/
stream::size_type VMIME_EXPORT bufferedStreamCopy(inputStream& is, outputStream& os,
VMIME_EXPORT stream::size_type bufferedStreamCopy(inputStream& is, outputStream& os,
const stream::size_type length, progressListener* progress);

View File

@ -85,8 +85,8 @@ private:
};
std::ostream& VMIME_EXPORT operator<<(std::ostream& os, const stringProxy& s);
outputStream& VMIME_EXPORT operator<<(outputStream& os, const stringProxy& s);
VMIME_EXPORT std::ostream& operator<<(std::ostream& os, const stringProxy& s);
VMIME_EXPORT outputStream& operator<<(outputStream& os, const stringProxy& s);
} // utility