more work on pvAccessCPP.html

This commit is contained in:
mrkraimer
2015-12-07 12:27:22 -05:00
parent 9b43a07b47
commit 99c7a1ae24
7 changed files with 1369 additions and 1165 deletions

1
.gitignore vendored
View File

@ -4,6 +4,7 @@ doc/
include/
db/
dbd/
html/
documentation/html
documentation/*.tag
envPaths

View File

@ -865,13 +865,13 @@ GENERATE_HTML = YES
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
# put in front of it. If left blank `html' will be used as the default path.
HTML_OUTPUT = documentation/html
HTML_OUTPUT =
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
# doxygen will generate files with .html extension.
HTML_FILE_EXTENSION = .html
HTML_FILE_EXTENSION =
# The HTML_HEADER tag can be used to specify a personal HTML header for
# each generated HTML page. If it is left blank doxygen will generate a

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -964,7 +964,7 @@ namespace pvAccess {
/** @page Overview Documentation
*
*<a href = "../pvAccessOverview.html">pvAccessOverview.html</a>
*<a href = "../documentation/pvAccessCPP.html">pvAccessCPP.html</a>
*
*/

View File

@ -322,7 +322,7 @@ RPCClient::shared_pointer RPCClient::create(const std::string & serviceName)
PVStructure::shared_pointer RPCClient::sendRequest(const std::string & serviceName,
PVStructure::shared_pointer queryRequest,
PVStructure::shared_pointer const & queryRequest,
double timeOut)
{
RPCClient::shared_pointer client = RPCClient::create(serviceName);

View File

@ -59,7 +59,7 @@ namespace pvAccess
* @throws RPCRequestException exception thrown on error on timeout.
*/
static epics::pvData::PVStructure::shared_pointer sendRequest(const std::string & serviceName,
epics::pvData::PVStructure::shared_pointer request, double timeOut = RPCCLIENT_DEFAULT_TIMEOUT);
epics::pvData::PVStructure::shared_pointer const &request, double timeOut = RPCCLIENT_DEFAULT_TIMEOUT);