Skip to content

Commit 2c39e4c

Browse files
author
Kim van der Riet
committed
QPID-4984: WIP - compiles, but not functional. Changed namespaces in project.
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/linearstore@1516306 13f79535-47bb-0310-9956-ffa450edef68
1 parent 341696d commit 2c39e4c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+320
-320
lines changed

qpid/cpp/src/qpid/linearstore/BindingDbt.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
#include "qpid/linearstore/BindingDbt.h"
2323

24-
namespace mrg {
25-
namespace msgstore {
24+
namespace qpid {
25+
namespace linearstore {
2626

2727
BindingDbt::BindingDbt(const qpid::broker::PersistableExchange& e, const qpid::broker::PersistableQueue& q, const std::string& k, const qpid::framing::FieldTable& a)
2828
: data(new char[encodedSize(e, q, k, a)]),

qpid/cpp/src/qpid/linearstore/BindingDbt.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
#include "qpid/framing/Buffer.h"
2929
#include "qpid/framing/FieldTable.h"
3030

31-
namespace mrg{
32-
namespace msgstore{
31+
namespace qpid{
32+
namespace linearstore{
3333

3434
class BindingDbt : public Dbt
3535
{

qpid/cpp/src/qpid/linearstore/BufferValue.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
#include "qpid/linearstore/BufferValue.h"
2323

24-
namespace mrg {
25-
namespace msgstore {
24+
namespace qpid {
25+
namespace linearstore {
2626

2727

2828

qpid/cpp/src/qpid/linearstore/BufferValue.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
#include "qpid/broker/Persistable.h"
2727
#include "qpid/framing/Buffer.h"
2828

29-
namespace mrg{
30-
namespace msgstore{
29+
namespace qpid{
30+
namespace linearstore{
3131

3232
class BufferValue : public Dbt
3333
{

qpid/cpp/src/qpid/linearstore/Cursor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
#include <boost/shared_ptr.hpp>
2626
#include "db-inc.h"
2727

28-
namespace mrg{
29-
namespace msgstore{
28+
namespace qpid{
29+
namespace linearstore{
3030

3131
class Cursor
3232
{

qpid/cpp/src/qpid/linearstore/DataTokenImpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#include "qpid/linearstore/DataTokenImpl.h"
2323

24-
using namespace mrg::msgstore;
24+
using namespace qpid::linearstore;
2525

2626
DataTokenImpl::DataTokenImpl():data_tok() {}
2727

qpid/cpp/src/qpid/linearstore/DataTokenImpl.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
#include "qpid/broker/PersistableMessage.h"
2727
#include <boost/intrusive_ptr.hpp>
2828

29-
namespace mrg {
30-
namespace msgstore {
29+
namespace qpid{
30+
namespace linearstore{
3131

32-
class DataTokenImpl : public journal::data_tok, public qpid::RefCounted
32+
class DataTokenImpl : public qpid::qls_jrnl::data_tok, public qpid::RefCounted
3333
{
3434
private:
3535
boost::intrusive_ptr<qpid::broker::PersistableMessage> sourceMsg;

qpid/cpp/src/qpid/linearstore/IdDbt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#include "qpid/linearstore/IdDbt.h"
2323

24-
using namespace mrg::msgstore;
24+
using namespace qpid::linearstore;
2525

2626
IdDbt::IdDbt() : id(0)
2727
{

qpid/cpp/src/qpid/linearstore/IdDbt.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
#include "db-inc.h"
2626

27-
namespace mrg{
28-
namespace msgstore{
27+
namespace qpid{
28+
namespace linearstore{
2929

3030
class IdDbt : public Dbt
3131
{

qpid/cpp/src/qpid/linearstore/IdSequence.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#include "qpid/linearstore/IdSequence.h"
2323

24-
using namespace mrg::msgstore;
24+
using namespace qpid::linearstore;
2525
using qpid::sys::Mutex;
2626

2727
IdSequence::IdSequence() : id(1) {}

0 commit comments

Comments
 (0)