mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
19 lines
374 B
C++
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();
|
|
}
|
|
|