X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fjournal%2FReplayEntry.h;fp=src%2Fceph%2Fsrc%2Fjournal%2FReplayEntry.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=4dd3ba4758e8bbb48a4f9ef9700823001a28d1d3;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/journal/ReplayEntry.h b/src/ceph/src/journal/ReplayEntry.h deleted file mode 100644 index 4dd3ba4..0000000 --- a/src/ceph/src/journal/ReplayEntry.h +++ /dev/null @@ -1,34 +0,0 @@ -// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab - -#ifndef CEPH_JOURNAL_REPLAY_ENTRY_H -#define CEPH_JOURNAL_REPLAY_ENTRY_H - -#include "include/int_types.h" -#include "include/buffer.h" - -namespace journal { - -class ReplayEntry { -public: - ReplayEntry() : m_commit_tid(0) { - } - ReplayEntry(const bufferlist &data, uint64_t commit_tid) - : m_data(data), m_commit_tid(commit_tid) { - } - - inline const bufferlist &get_data() const { - return m_data; - } - inline uint64_t get_commit_tid() const { - return m_commit_tid; - } - -private: - bufferlist m_data; - uint64_t m_commit_tid; -}; - -} // namespace journal - -#endif // CEPH_JOURNAL_REPLAY_ENTRY_H