Files
Sourcetrail/src/lib/component/view/LogView.h
T
Andreas Stallinger dc064e4756 ui: Errorview
Tabbed view with errorview as tab
2016-10-13 12:37:10 +02:00

19 lines
259 B
C++

#ifndef LOG_VIEW_H
#define LOG_VIEW_H
#include "component/view/View.h"
class LogView
: public View
{
public:
LogView(ViewLayout* viewLayout);
virtual ~LogView();
virtual std::string getName() const;
virtual void clear() = 0;
};
#endif // LOG_VIEW_H