diff options
author | Stephen D. Huston <shuston@apache.org> | 2009-05-04 23:11:49 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2009-05-04 23:11:49 +0000 |
commit | 353a950ae230586f11addda16e6880744f8e818b (patch) | |
tree | 03f9d6dd2b58a16ba58fd112c69db534783eeb52 | |
parent | 3a0c8f2a7c6c6c3558a9dc0ac302dcc6afe753ab (diff) | |
download | qpid-python-353a950ae230586f11addda16e6880744f8e818b.tar.gz |
Add new files to client project
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@771489 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/client.vcproj | 12 | ||||
-rw-r--r-- | cpp/src/qpid/client/LocalQueue.h | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/cpp/src/client.vcproj b/cpp/src/client.vcproj index 99f968b619..09aecdce21 100644 --- a/cpp/src/client.vcproj +++ b/cpp/src/client.vcproj @@ -444,6 +444,9 @@ RelativePath="qpid\client\LocalQueue.cpp">
</File>
<File
+ RelativePath="qpid\client\LocalQueueImpl.cpp">
+ </File>
+ <File
RelativePath="qpid\client\Message.cpp">
</File>
<File
@@ -486,6 +489,9 @@ RelativePath="qpid\client\SubscriptionManager.cpp">
</File>
<File
+ RelativePath="qpid\client\SubscriptionManagerImpl.cpp">
+ </File>
+ <File
RelativePath="qpid\client\windows\SaslFactory.cpp">
</File>
</Filter>
@@ -574,6 +580,9 @@ RelativePath="qpid\client\LocalQueue.h">
</File>
<File
+ RelativePath="qpid\client\LocalQueueImpl.h">
+ </File>
+ <File
RelativePath="qpid\client\Message.h">
</File>
<File
@@ -622,6 +631,9 @@ RelativePath="qpid\client\SubscriptionManager.h">
</File>
<File
+ RelativePath="qpid\client\SubscriptionManagerImpl.h">
+ </File>
+ <File
RelativePath="qpid\client\SubscriptionSettings.h">
</File>
<File
diff --git a/cpp/src/qpid/client/LocalQueue.h b/cpp/src/qpid/client/LocalQueue.h index 4aa14ce004..aa7b098513 100644 --- a/cpp/src/qpid/client/LocalQueue.h +++ b/cpp/src/qpid/client/LocalQueue.h @@ -107,7 +107,7 @@ class LocalQueue : public Handle<LocalQueueImpl> { /** Number of messages on the local queue */ QPID_CLIENT_EXTERN size_t size() const; - QPID_CLIENT_EXTERN LocalQueue(LocalQueueImpl*); ///<@internal + LocalQueue(LocalQueueImpl*); ///<@internal private: |