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
commitf6d43659eca4162aea86d09c942a507fd4319b08 (patch)
treeedb5af09d63558c6adc248f130176c1531581824
parentcecee5383faa391c22e520d65a65d29bc8469205 (diff)
downloadqpid-python-f6d43659eca4162aea86d09c942a507fd4319b08.tar.gz
Some QPID_COMMON_EXTERNs missed from previous uuid commit
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@810103 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--cpp/include/qpid/framing/Uuid.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/qpid/framing/Uuid.h b/cpp/include/qpid/framing/Uuid.h
index 8e817178da..618515622d 100644
--- a/cpp/include/qpid/framing/Uuid.h
+++ b/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();