ultimatepp/bazaar/TreeTest/TreeTest.h
kohait c761602615 bazaar: a Tree<T> implementation
git-svn-id: svn://ultimatepp.org/upp/trunk@2606 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2010-08-13 13:05:11 +00:00

33 lines
488 B
C++

#ifndef _TreeTest_TreeTest_h
#define _TreeTest_TreeTest_h
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
#define LAYOUTFILE <TreeTest/TreeTest.lay>
#include <CtrlCore/lay.h>
#include <Tree/Tree.h>
class Element
{
public:
typedef Element CLASSNAME;
String name;
Value value;
};
///
class TreeTest : public WithLayout<TopWindow> {
public:
typedef TreeTest CLASSNAME;
TreeTest();
Node<One<Element> > root;
Node<Element> roota;
};
#endif