X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Ftools%2Fcephfs%2FEventOutput.h;fp=src%2Fceph%2Fsrc%2Ftools%2Fcephfs%2FEventOutput.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=65d968409b4e30be03d517793f2486a22a77541b;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/tools/cephfs/EventOutput.h b/src/ceph/src/tools/cephfs/EventOutput.h deleted file mode 100644 index 65d9684..0000000 --- a/src/ceph/src/tools/cephfs/EventOutput.h +++ /dev/null @@ -1,42 +0,0 @@ -// -*- mode:c++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab -/* - * ceph - scalable distributed file system - * - * copyright (c) 2014 john spray - * - * this is free software; you can redistribute it and/or - * modify it under the terms of the gnu lesser general public - * license version 2.1, as published by the free software - * foundation. see file copying. - */ - - -#ifndef EVENT_OUTPUT_H -#define EVENT_OUTPUT_H - -#include - -class JournalScanner; - -/** - * Different output formats for the results of a journal scan - */ -class EventOutput -{ - private: - JournalScanner const &scan; - std::string const path; - - public: - EventOutput(JournalScanner const &scan_, std::string const &path_) - : scan(scan_), path(path_) {} - - void summary() const; - void list() const; - int json() const; - int binary() const; -}; - -#endif // EVENT_OUTPUT_H -