+
+ @beginWxPerlOnly
+
+ In wxPerl @a docClassInfo and @a viewClassInfo can be either
+ @c Wx::ClassInfo objects or strings containing the name of the
+ perl packages which are to be used as @c Wx::Document and
+ @c Wx::View classes (they must have a constructor named new);
+ as an example:
+
+ - Wx::DocTemplate->new(docmgr, descr, filter, dir, ext,
+ docTypeName, viewTypeName, docClassInfo, viewClassInfo,
+ flags): will construct document and view objects from the
+ class information.
+ - Wx::DocTemplate->new(docmgr, descr, filter, dir, ext,
+ docTypeName, viewTypeName, docClassName, viewClassName,
+ flags): will construct document and view objects from perl
+ packages.
+ - Wx::DocTemplate->new(docmgr, descr, filter, dir, ext,
+ docTypeName, viewTypeName):
+ in this case @c Wx::DocTemplate::CreateDocument() and
+ @c Wx::DocTemplate::CreateView() must be overridden
+ @endWxPerlOnly