#ifndef %{APPNAME}_PLUGIN_IMPL_H #define %{APPNAME}_PLUGIN_IMPL_H #include class %{APPNAME}; class %{APPNAME}Impl : public TodayPluginInterface{ public: %{APPNAME}Impl(); virtual ~%{APPNAME}Impl(); TQRESULT queryInterface( const TQUuid &, TQUnknownInterface** ); TQ_REFCOUNT virtual TodayPluginObject *guiPart(); private: %{APPNAME} *examplePlugin; }; #endif