ultimatepp/bazaar/TestHelpViewer/main.cpp
koldo 00ce37bc89 .TestHelpViewer: Unnecessary duplicate
git-svn-id: svn://ultimatepp.org/upp/trunk@4009 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-10-13 19:54:48 +00:00

19 lines
374 B
C++

#include <CtrlLib/CtrlLib.h>
#include <HelpViewer/HelpViewer.h>
using namespace Upp;
#define TOPICFILE <TestHelpViewer/app.tpp/all.i>
#include <Core/topic_group.h>
GUI_APP_MAIN
{
HelpViewer helpViewer;
helpViewer.Title("HelpViewer test");
helpViewer.Clear();
helpViewer.LoadTOC("topic://TestHelpViewer/app/TOC$it-it");
helpViewer.Execute();
}