mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
27 lines
402 B
C++
27 lines
402 B
C++
#ifndef _IterTest_IterTest_h
|
|
#define _IterTest_IterTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <IterTest/IterTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
#include <Iter/Iter.h>
|
|
|
|
class Foo : public Link<Foo>
|
|
{
|
|
public:
|
|
int d;
|
|
};
|
|
|
|
|
|
class IterTest : public WithIterTestLayout<TopWindow> {
|
|
public:
|
|
typedef IterTest CLASSNAME;
|
|
IterTest();
|
|
};
|
|
|
|
#endif
|
|
|