mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
Still missing error checkings git-svn-id: svn://ultimatepp.org/upp/trunk@2732 f0d560ea-af0d-0410-9eb7-867de7ffcac7
25 lines
419 B
C++
25 lines
419 B
C++
#ifndef _CypherTest_CypherTest_h
|
|
#define _CypherTest_CypherTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
#include <Controls4U/Controls4U.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <CypherTest/CypherTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class CypherTest : public WithCypherTestLayout<TopWindow>
|
|
{
|
|
private:
|
|
void onCypherSwitch(void);
|
|
void onGo(void);
|
|
|
|
public:
|
|
typedef CypherTest CLASSNAME;
|
|
|
|
CypherTest();
|
|
};
|
|
|
|
#endif
|
|
|