diff options
| author | Alan Conway <aconway@apache.org> | 2009-07-14 14:32:39 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2009-07-14 14:32:39 +0000 |
| commit | c7b58ba05104496a96cce3c7acd035253fd89f79 (patch) | |
| tree | 6fb65c261f7ac7e53e8d9360e79e39635046a0b5 /cpp/src/qmf | |
| parent | d2e4e9a156c15bfc4c11fd0e6088940caabd5339 (diff) | |
| download | qpid-python-c7b58ba05104496a96cce3c7acd035253fd89f79.tar.gz | |
Add directory to #include
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@793909 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qmf')
| -rw-r--r-- | cpp/src/qmf/Agent.cpp | 16 | ||||
| -rw-r--r-- | cpp/src/qmf/MessageImpl.cpp | 2 | ||||
| -rw-r--r-- | cpp/src/qmf/MessageImpl.h | 2 | ||||
| -rw-r--r-- | cpp/src/qmf/ObjectIdImpl.cpp | 2 | ||||
| -rw-r--r-- | cpp/src/qmf/ObjectImpl.cpp | 4 | ||||
| -rw-r--r-- | cpp/src/qmf/QueryImpl.cpp | 2 | ||||
| -rw-r--r-- | cpp/src/qmf/ResilientConnection.cpp | 4 | ||||
| -rw-r--r-- | cpp/src/qmf/SchemaImpl.cpp | 2 | ||||
| -rw-r--r-- | cpp/src/qmf/SchemaImpl.h | 2 | ||||
| -rw-r--r-- | cpp/src/qmf/ValueImpl.cpp | 2 |
10 files changed, 19 insertions, 19 deletions
diff --git a/cpp/src/qmf/Agent.cpp b/cpp/src/qmf/Agent.cpp index e4aeca8a84..64d34f7ecd 100644 --- a/cpp/src/qmf/Agent.cpp +++ b/cpp/src/qmf/Agent.cpp @@ -17,14 +17,14 @@ * under the License. */ -#include "Agent.h" -#include "MessageImpl.h" -#include "SchemaImpl.h" -#include "Typecode.h" -#include "ObjectImpl.h" -#include "ObjectIdImpl.h" -#include "QueryImpl.h" -#include "ValueImpl.h" +#include "qmf/Agent.h" +#include "qmf/MessageImpl.h" +#include "qmf/SchemaImpl.h" +#include "qmf/Typecode.h" +#include "qmf/ObjectImpl.h" +#include "qmf/ObjectIdImpl.h" +#include "qmf/QueryImpl.h" +#include "qmf/ValueImpl.h" #include <qpid/framing/Buffer.h> #include <qpid/framing/Uuid.h> #include <qpid/framing/FieldTable.h> diff --git a/cpp/src/qmf/MessageImpl.cpp b/cpp/src/qmf/MessageImpl.cpp index 0f3dd7caaf..f2625c7202 100644 --- a/cpp/src/qmf/MessageImpl.cpp +++ b/cpp/src/qmf/MessageImpl.cpp @@ -17,7 +17,7 @@ * under the License. */ -#include "MessageImpl.h" +#include "qmf/MessageImpl.h" #include <string.h> using namespace std; diff --git a/cpp/src/qmf/MessageImpl.h b/cpp/src/qmf/MessageImpl.h index 618e2c1940..137f435699 100644 --- a/cpp/src/qmf/MessageImpl.h +++ b/cpp/src/qmf/MessageImpl.h @@ -20,7 +20,7 @@ * under the License. */ -#include "Message.h" +#include "qmf/Message.h" #include <string> #include <boost/shared_ptr.hpp> diff --git a/cpp/src/qmf/ObjectIdImpl.cpp b/cpp/src/qmf/ObjectIdImpl.cpp index 83fd6cc34f..efa8e7119b 100644 --- a/cpp/src/qmf/ObjectIdImpl.cpp +++ b/cpp/src/qmf/ObjectIdImpl.cpp @@ -17,7 +17,7 @@ * under the License. */ -#include "ObjectIdImpl.h" +#include "qmf/ObjectIdImpl.h" #include <stdlib.h> using namespace std; diff --git a/cpp/src/qmf/ObjectImpl.cpp b/cpp/src/qmf/ObjectImpl.cpp index d00dd89b3d..d3882935e4 100644 --- a/cpp/src/qmf/ObjectImpl.cpp +++ b/cpp/src/qmf/ObjectImpl.cpp @@ -17,8 +17,8 @@ * under the License. */ -#include "ObjectImpl.h" -#include "ValueImpl.h" +#include "qmf/ObjectImpl.h" +#include "qmf/ValueImpl.h" #include <qpid/sys/Time.h> using namespace std; diff --git a/cpp/src/qmf/QueryImpl.cpp b/cpp/src/qmf/QueryImpl.cpp index f74d9238ae..7e827796bb 100644 --- a/cpp/src/qmf/QueryImpl.cpp +++ b/cpp/src/qmf/QueryImpl.cpp @@ -17,7 +17,7 @@ * under the License. */ -#include "QueryImpl.h" +#include "qmf/QueryImpl.h" using namespace std; using namespace qmf; diff --git a/cpp/src/qmf/ResilientConnection.cpp b/cpp/src/qmf/ResilientConnection.cpp index 3a32d11df4..66d76266ce 100644 --- a/cpp/src/qmf/ResilientConnection.cpp +++ b/cpp/src/qmf/ResilientConnection.cpp @@ -17,8 +17,8 @@ * under the License. */ -#include "ResilientConnection.h" -#include "MessageImpl.h" +#include "qmf/ResilientConnection.h" +#include "qmf/MessageImpl.h" #include <qpid/client/Session.h> #include <qpid/client/MessageListener.h> #include <qpid/client/SubscriptionManager.h> diff --git a/cpp/src/qmf/SchemaImpl.cpp b/cpp/src/qmf/SchemaImpl.cpp index 716c4db4f0..665c94f2a1 100644 --- a/cpp/src/qmf/SchemaImpl.cpp +++ b/cpp/src/qmf/SchemaImpl.cpp @@ -17,7 +17,7 @@ * under the License. */ -#include "SchemaImpl.h" +#include "qmf/SchemaImpl.h" #include <qpid/framing/Buffer.h> #include <qpid/framing/FieldTable.h> #include <string> diff --git a/cpp/src/qmf/SchemaImpl.h b/cpp/src/qmf/SchemaImpl.h index fbc156c538..2c30a8851f 100644 --- a/cpp/src/qmf/SchemaImpl.h +++ b/cpp/src/qmf/SchemaImpl.h @@ -20,7 +20,7 @@ * under the License. */ -#include "Schema.h" +#include "qmf/Schema.h" #include <string> #include <vector> #include <qpid/framing/Buffer.h> diff --git a/cpp/src/qmf/ValueImpl.cpp b/cpp/src/qmf/ValueImpl.cpp index 538255ea20..f42c85eb33 100644 --- a/cpp/src/qmf/ValueImpl.cpp +++ b/cpp/src/qmf/ValueImpl.cpp @@ -17,7 +17,7 @@ * under the License. */ -#include "ValueImpl.h" +#include "qmf/ValueImpl.h" #include <qpid/framing/FieldTable.h> using namespace std; |
