diff options
author | Alan Conway <aconway@apache.org> | 2007-02-17 03:46:44 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-02-17 03:46:44 +0000 |
commit | f972bfa6c7c9a1b3d5f5fe4753dce7358b6b0215 (patch) | |
tree | a3d37ef1999eb4ebdb8bb9d6eaea8b2d3de5dfe2 /cpp/docs/api | |
parent | 72de13352dc9c42acfe95a1d76f049c507eb5cfd (diff) | |
download | qpid-python-f972bfa6c7c9a1b3d5f5fe4753dce7358b6b0215.tar.gz |
* cpp/lib/client/ClientMessage.h/.cpp: Added Message constructor taking data.
* cpp/lib/client/IncomingMessage.cpp: Simplified message aggregation.
* cpp/lib/common/framing/AMQ*Body.h: remove unnecessary virtual inheritance.
* cpp/lib/common/framing/AMQMethodBody.h: add bool isRequest, isResponse
* cpp/lib/common/sys/Mutex.h (class ScopedUnlock): Added ScopedUnlock
* cpp/lib/common/sys/ThreadSafeQueue.h: Thread-safe queue template.
* cpp/tests/BrokerChannelTest.cpp: Renamed from ChannelTest.
* cpp/tests/ClientChannelTest.cpp: Test client API.
* cpp/tests/RequestResponseTest.cpp: Removed empty test.
* cpp/lib/client/Connection.h,.cpp:
- non-static channelIdCounter
- No close() in dtor.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@508705 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/docs/api')
-rw-r--r-- | cpp/docs/api/developer.doxygen | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/docs/api/developer.doxygen b/cpp/docs/api/developer.doxygen index 2b81671593..4679876d09 100644 --- a/cpp/docs/api/developer.doxygen +++ b/cpp/docs/api/developer.doxygen @@ -35,7 +35,7 @@ PROJECT_NUMBER = 0 # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. -OUTPUT_DIRECTORY = dev +OUTPUT_DIRECTORY = . # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output @@ -438,7 +438,7 @@ WARN_IF_DOC_ERROR = YES # wrong or incomplete parameter documentation, but not about the absence of # documentation. -WARN_NO_PARAMDOC = NO +WARN_NO_PARAMDOC = YES # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text @@ -453,7 +453,7 @@ WARN_FORMAT = "$file:$line: $text" # and error messages should be written. If left blank the output is written # to stderr. -WARN_LOGFILE = +WARN_LOGFILE = doxygen.log #--------------------------------------------------------------------------- # configuration options related to the input files |