00001 /* puttyapp.h 00002 * 00003 * Putty UI Application class 00004 * 00005 * Copyright 2002 Petteri Kangaslampi 00006 * 00007 * See license.txt for full copyright and license information. 00008 */ 00009 00010 #ifndef __PUTTYAPP_H__ 00011 #define __PUTTYAPP_H__ 00012 00013 #include <eikapp.h> 00014 00018 class CPuttyApplication : public CEikApplication { 00019 00020 private: 00021 CApaDocument* CreateDocumentL(); 00022 TUid AppDllUid() const; 00023 }; 00024 00025 #endif