ultimatepp/bazaar/LogCtrlTest/LogCtrlTest.h
kohait 539991f470 bazaar: LogCtrl: redirect entire Logging facility of Upp to a Ctrl
git-svn-id: svn://ultimatepp.org/upp/trunk@3320 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-03-31 08:32:17 +00:00

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