summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2009-09-01 15:54:29 +0000
committerAndrew Stitcher <astitcher@apache.org>2009-09-01 15:54:29 +0000
commitf8bcd637a512b3b97067aa41383290bb92e65913 (patch)
tree54a7341542cd1cc1e92ff061cf7cbda1b6f9ff04
parent2efb7bb5c2bbd3df778710cfb67a630fa6d4d0fa (diff)
downloadqpid-python-f8bcd637a512b3b97067aa41383290bb92e65913.tar.gz
Some QPID_COMMON_EXTERNs missed from previous uuid commit
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@810103 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/include/qpid/framing/Uuid.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/include/qpid/framing/Uuid.h b/qpid/cpp/include/qpid/framing/Uuid.h
index 8e817178da..618515622d 100644
--- a/qpid/cpp/include/qpid/framing/Uuid.h
+++ b/qpid/cpp/include/qpid/framing/Uuid.h
@@ -43,10 +43,10 @@ class Buffer;
*/
struct Uuid : public boost::array<uint8_t, 16> {
/** If unique is true, generate a unique ID else a null ID. */
- Uuid(bool unique=false);
+ QPID_COMMON_EXTERN Uuid(bool unique=false);
/** Copy from 16 bytes of data. */
- Uuid(const uint8_t* data);
+ QPID_COMMON_EXTERN Uuid(const uint8_t* data);
// Default op= and copy ctor are fine.
// boost::array gives us ==, < etc.
@@ -55,7 +55,7 @@ struct Uuid : public boost::array<uint8_t, 16> {
void assign(const uint8_t* data);
/** Set to a new unique identifier. */
- void generate();
+ QPID_COMMON_EXTERN void generate();
/** Set to all zeros. */
void clear();