mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
26 lines
734 B
C++
26 lines
734 B
C++
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Program : MyUppApp.exe
|
|
// Version : 0.0.3 Alpha
|
|
// Date : November 2006
|
|
// Copyright : Copyright(C) 2006 by Yeoh HS
|
|
// Author : Yeoh HS
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _MyUppApp_Static_h_
|
|
#define _MyUppApp_Static_h_
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
#define LAYOUTFILE <MyUppApp/Static.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
#define IMAGECLASS StaticImg
|
|
#define IMAGEFILE <MyUppApp/Static.iml>
|
|
#include <Draw/iml_header.h>
|
|
|
|
|
|
class Static : public WithStaticLayout<TopWindow> {
|
|
public:
|
|
typedef Static CLASSNAME;
|
|
Static();
|
|
};
|
|
#endif
|