mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
18 lines
323 B
C++
18 lines
323 B
C++
#ifndef _RichView_RichView_h
|
|
#define _RichView_RichView_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
#define LAYOUTFILE <RichView/RichView.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class RichView : public WithRichViewLayout<TopWindow> {
|
|
public:
|
|
void Add();
|
|
void Clear();
|
|
|
|
typedef RichView CLASSNAME;
|
|
RichView();
|
|
};
|
|
|
|
#endif
|