Merge pull request #64 from eboasson/master

Update getting started guide to use new QoS function names
This commit is contained in:
eboasson 2018-11-27 15:36:14 +01:00 committed by GitHub
commit 56900b4f1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -261,10 +261,10 @@ a so called 'reliable' reader. Without going into details, the reader
will be created like this
::
dds_qos_t *qos = dds_qos_create ();
dds_qos_t *qos = dds_create_qos ();
dds_qset_reliability (qos, DDS_RELIABILITY_RELIABLE, DDS_SECS (10));
reader = dds_create_reader (participant, topic, qos, NULL);
dds_qos_delete(qos);
dds_delete_qos(qos);
We are almost able to read data. However, the read expects an
array of pointers to valid memory locations. This means the