mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
24 lines
454 B
C++
24 lines
454 B
C++
#ifndef _ThreadCrash_ThreadCrash_h
|
|
#define _ThreadCrash_ThreadCrash_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
#define LAYOUTFILE <ThreadCrash/ThreadCrash.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
class ThreadCrash : public WithThreadCrashLayout<TopWindow> {
|
|
public:
|
|
typedef ThreadCrash CLASSNAME;
|
|
ThreadCrash();
|
|
ToolBar bar;
|
|
Thread thr;
|
|
ArrayCtrl arr;
|
|
|
|
void MakeToolBar(Bar &bar);
|
|
void RefreshOption();
|
|
void RefreshOptionThr();
|
|
};
|
|
|
|
#endif
|