curseSplitOutput.hh 331 B

123456789101112131415161718
  1. #pragma once
  2. #include "curseOutput.hh"
  3. class CurseSplitOutput: public CurseOutput
  4. {
  5. public:
  6. CurseSplitOutput(const Params &);
  7. virtual ~CurseSplitOutput();
  8. /**
  9. * Display data, and shutdown ncurses at the end
  10. **/
  11. void run(std::list<JSonElement *>);
  12. bool redraw();
  13. };