| 1234567891011121314151617181920212223242526272829 |
- /**
- * curseOutput.hh for jsonstroller
- *
- * Author: isundil <isundill@gmail.com>
- **/
- #pragma once
- #include "curseOutput.hh"
- class CurseSimpleOutput: public CurseOutput
- {
- public:
- CurseSimpleOutput(const Params &);
- ~CurseSimpleOutput();
- bool redraw();
- /**
- * Display data, and shutdown ncurses at the end
- **/
- void run(JSonElement *);
- /**
- * Root item
- **/
- JSonElement *data;
- };
|