#ifndef APPS_SHARED_HIDEABLE_EVEN_ODD_BUFFER_TEXT_CELL_H #define APPS_SHARED_HIDEABLE_EVEN_ODD_BUFFER_TEXT_CELL_H #include #include #include "hideable.h" namespace Shared { class HideableEvenOddBufferTextCell : public EvenOddBufferTextCell, public Hideable { public: HideableEvenOddBufferTextCell() : EvenOddBufferTextCell(), Hideable() {} KDColor backgroundColor() const override; void setHide(bool hide) override; }; } #endif