mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
27 lines
466 B
C++
27 lines
466 B
C++
#ifndef _LogCtrlTest_LogCtrlTest_h
|
|
#define _LogCtrlTest_LogCtrlTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#include <LogCtrl/LogCtrl.h>
|
|
|
|
#define LAYOUTFILE <LogCtrlTest/LogCtrlTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
class LogCtrlTest : public WithLogCtrlTestLayout<TopWindow> {
|
|
public:
|
|
typedef LogCtrlTest CLASSNAME;
|
|
LogCtrlTest();
|
|
|
|
void Clear() { log.Clear(); }
|
|
void Save() { log.Save(); }
|
|
|
|
LogCtrl log;
|
|
};
|
|
|
|
#endif
|
|
|