comparison include/http/ITransaction.hpp @ 46:dad671a5f028

Corrections de typos, d'orthograffe et de formulations.
author David Pineau <dav.pineau@gmail.com>
date Mon, 22 Mar 2010 17:39:10 +0100
parents 7c8cd74023ce
children a93d94340fc7
comparison
equal deleted inserted replaced
42:1254fa6755a3 46:dad671a5f028
10 namespace api 10 namespace api
11 { 11 {
12 namespace http 12 namespace http
13 { 13 {
14 /** 14 /**
15 * @brief Provide a way to get all informations related to the 15 * @brief Provides a way to get all informations related to the
16 * request and the response. 16 * request and the response.
17 * 17 *
18 * Even if response is always available, it should not be modify in 18 * Even if response is always available, it should not be modified
19 * RequestModifier * handler. 19 * in RequestModifier handler.
20 * 20 *
21 * @note We don't provide differents interfaces for the request and 21 * @note We do not provide different interfaces for the request and
22 * the response, to avoid code duplication. 22 * the response handlers, to avoid code duplication. It is up to
23 * the module not to modify carelessly the request or the response.
23 */ 24 */
24 class ITransaction 25 class ITransaction
25 { 26 {
26 public: 27 public:
27 virtual ~ITransaction(void) { } 28 virtual ~ITransaction(void) { }