From 9b1539f3685b42d7a41f7f4cb6cc327d5531cd00 Mon Sep 17 00:00:00 2001
From: mrkraimer
Date: Wed, 12 Jul 2017 06:38:55 -0400
Subject: [PATCH] more work on doxygen
---
documentation/RELEASE_NOTES.md | 2 +-
documentation/htmldoxygen/pvaClientGet.html | 14 ++++----
.../htmldoxygen/pvaClientGetData.html | 2 +-
.../htmldoxygen/pvaClientMonitorData.html | 2 +-
.../htmldoxygen/pvaClientProcess.html | 10 +++---
.../htmldoxygen/pvaClientPutData.html | 8 ++---
.../htmldoxygen/pvaClientPutGet.html | 9 +++---
src/pv/pvaClient.h | 1 -
src/pv/pvaClientMultiChannel.h | 32 -------------------
9 files changed, 24 insertions(+), 56 deletions(-)
diff --git a/documentation/RELEASE_NOTES.md b/documentation/RELEASE_NOTES.md
index 0070a25..628422d 100644
--- a/documentation/RELEASE_NOTES.md
+++ b/documentation/RELEASE_NOTES.md
@@ -9,7 +9,7 @@ Will not work with older versions.
destroy methods removed
-----------------------
-All the destroy methods are removed since implementation is RAII compliant.s
+All the destroy methods are removed since implementation is RAII compliant.
API changes to PvaClientMonitor
-------------------------------
diff --git a/documentation/htmldoxygen/pvaClientGet.html b/documentation/htmldoxygen/pvaClientGet.html
index 12984d6..0845e92 100644
--- a/documentation/htmldoxygen/pvaClientGet.html
+++ b/documentation/htmldoxygen/pvaClientGet.html
@@ -40,18 +40,18 @@
pvaClientGet is a synchronous wrapper for the pvAccess::ChannelGet API, which is a callback based API.
Thus it is easier to use than pvAccess::ChannelGet itself.
-An instance of PvaClientGet is created via a call to one of the followimg:
+An instance of PvaClientGet is created via a call to one of the following:
class PvaClientChannel
...
{
...
- PvaClientGetPtr get(std::string const & request = "field(value,alarm,timeStamp)");
- PvaClientGetPtr createGet(std::string const & request = "");
- PvaClientGetPtr createGet(epics::pvData::PVStructurePtr const & pvRequest);
+ PvaClientGetPtr get(std::string const & request = "field(value,alarm,timeStamp)");
+ PvaClientGetPtr createGet(std::string const & request = "");
+ PvaClientGetPtr createGet(epics::pvData::PVStructurePtr const & pvRequest);
...
};
-An instance of PvaClientGet/b> connects to a single channel.
+
An instance of PvaClientGet connects to a single channel.
PvaClientGet has both synchronous methods, which block, and non blocking methods.
PvaClientChannel has methods:
@@ -65,8 +65,8 @@ waitGet waits until the server send a message that the get is comple
getData get the data.
-Note that issueConnect and issueGet do not block but all other methods
-do block.
+issueConnect and issueGet do not block.
+All other methods can block.