mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-06 22:03:44 -06:00
23 lines
322 B
C++
23 lines
322 B
C++
#ifndef _Crush_Crush_h
|
|
#define _Crush_Crush_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <Crush/Crush.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
class Crush : public WithCrushLayout<TopWindow>
|
|
{
|
|
public:
|
|
typedef Crush CLASSNAME;
|
|
|
|
Crush();
|
|
|
|
private:
|
|
void CrushThis();
|
|
};
|
|
|
|
#endif
|