#ifndef _TestUpp_TestUpp_h #define _TestUpp_TestUpp_h #include using namespace Upp; class DocEditEx : public DocEdit { virtual bool Key(dword key, int count) { return DocEdit::Key(key < 65536 ? ToUpper((wchar)key) : key, count); } }; #define LAYOUTFILE #include class TestUpp : public WithTestUppLayout { public: typedef TestUpp CLASSNAME; TestUpp(); }; #endif