Skip to content

Commit

Permalink
add file header to src/*.hpp files.
Browse files Browse the repository at this point in the history
  • Loading branch information
azadkuh committed Jul 11, 2014
1 parent 86f1334 commit 186e693
Show file tree
Hide file tree
Showing 17 changed files with 138 additions and 2 deletions.
8 changes: 8 additions & 0 deletions src/private/qhttpbase.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** base classes for private implementations.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPBASE_HPP
#define QHTTPBASE_HPP

Expand Down
8 changes: 8 additions & 0 deletions src/private/qhttpclient_private.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** private imeplementation.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPCLIENT_PRIVATE_HPP
#define QHTTPCLIENT_PRIVATE_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 8 additions & 0 deletions src/private/qhttpclientrequest_private.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** private imeplementation.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPCLIENT_REQUEST_PRIVATE_HPP
#define QHTTPCLIENT_REQUEST_PRIVATE_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 8 additions & 0 deletions src/private/qhttpclientresponse_private.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** private imeplementation.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPCLIENT_RESPONSE_PRIVATE_HPP
#define QHTTPCLIENT_RESPONSE_PRIVATE_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 8 additions & 0 deletions src/private/qhttpserver_private.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** private imeplementation.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPSERVER_PRIVATE_HPP
#define QHTTPSERVER_PRIVATE_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 8 additions & 0 deletions src/private/qhttpserverconnection_private.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** private imeplementation.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPSERVER_CONNECTION_PRIVATE_HPP
#define QHTTPSERVER_CONNECTION_PRIVATE_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 8 additions & 0 deletions src/private/qhttpserverrequest_private.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** private imeplementation.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPSERVER_REQUEST_PRIVATE_HPP
#define QHTTPSERVER_REQUEST_PRIVATE_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 8 additions & 0 deletions src/private/qhttpserverresponse_private.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** private imeplementation.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPSERVER_RESPONSE_PRIVATE_HPP
#define QHTTPSERVER_RESPONSE_PRIVATE_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 8 additions & 0 deletions src/qhttpabstracts.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** interfaces of QHttp' incomming and outgoing classes.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPABSTRACTS_HPP
#define QHTTPABSTRACTS_HPP

Expand Down
10 changes: 9 additions & 1 deletion src/qhttpclient.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** HTTP client class.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPCLIENT_HPP
#define QHTTPCLIENT_HPP

Expand All @@ -11,7 +19,7 @@ namespace qhttp {
namespace client {
///////////////////////////////////////////////////////////////////////////////

/** a simple HTTP client class which sends a request to an HTTP server and parses the
/** a simple and async HTTP client class which sends a request to an HTTP server and parses the
* corresponding response.
* This class internally handles the memory management and life cycle of QHttpRequest and
* QHttpResponse instances. you do not have to manually delete or keep their pointers.
Expand Down
8 changes: 8 additions & 0 deletions src/qhttpclientrequest.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** HTTP request from a client.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPCLIENT_REQUEST_HPP
#define QHTTPCLIENT_REQUEST_HPP

Expand Down
8 changes: 8 additions & 0 deletions src/qhttpclientresponse.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** HTTP response received by client.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPCLIENT_RESPONSE_HPP
#define QHTTPCLIENT_RESPONSE_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 8 additions & 0 deletions src/qhttpfwd.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** forward declarations and general definitions of the QHttp.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPFWD_HPP
#define QHTTPFWD_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
10 changes: 9 additions & 1 deletion src/qhttpserver.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** HTTP server class.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPSERVER_HPP
#define QHTTPSERVER_HPP

Expand All @@ -12,7 +20,7 @@ namespace qhttp {
namespace server {
///////////////////////////////////////////////////////////////////////////////

/** The QHttpServer class is a fast, non-blocking HTTP server. */
/** The QHttpServer class is a fast, async (non-blocking) HTTP server. */
class QHttpServer : public QTcpServer
{
Q_OBJECT
Expand Down
8 changes: 8 additions & 0 deletions src/qhttpserverconnection.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** HTTP connection class.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPSERVER_CONNECTION_HPP
#define QHTTPSERVER_CONNECTION_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 8 additions & 0 deletions src/qhttpserverrequest.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** HTTP request which is received by the server.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPSERVER_REQUEST_HPP
#define QHTTPSERVER_REQUEST_HPP
///////////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 8 additions & 0 deletions src/qhttpserverresponse.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/** HTTP response from a server.
* https://github.com/azadkuh/qhttp
*
* @author amir zamani
* @version 2.0.0
* @date 2014-07-11
*/

#ifndef QHTTPSERVER_RESPONSE_HPP
#define QHTTPSERVER_RESPONSE_HPP

Expand Down

0 comments on commit 186e693

Please sign in to comment.