1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
The documentation of the Orthanc Client for C++ can be opened using
the following command:
$ xdg-open file:///usr/share/doc/orthanc/OrthancClient/index.html
The basic sample can be compiled with the following command:
$ mkdir /tmp/OrthancClientSample
$ cd /tmp/OrthancClientSample
$ cmake /usr/share/doc/orthanc/OrthancClientSamples/Basic
$ make
$ ./Test
Before running this basic sample, make sure that Orthanc is up and
running on the default HTTP port. This can be checked by opening the
Orthanc Web interface:
$ xdg-open http://localhost:8042/app/explorer.html
|