Update QtWebapp to 1.7.11

This commit is contained in:
Felix Kauselmann
2020-07-30 12:28:05 +02:00
parent 3de099491f
commit b9c48cc4b6
31 changed files with 796 additions and 307 deletions

View File

@ -11,6 +11,8 @@
#include <QReadWriteLock>
#include "httpglobal.h"
namespace stefanfrings {
/**
This class stores data for a single HTTP session.
A session can store any number of key/value pairs. This class uses implicit
@ -27,7 +29,7 @@ public:
@param canStore The session can store data, if this parameter is true.
Otherwise all calls to set() and remove() do not have any effect.
*/
HttpSession(bool canStore=false);
HttpSession(const bool canStore=false);
/**
Copy constructor. Creates another HttpSession object that shares the
@ -115,4 +117,6 @@ private:
};
} // end of namespace
#endif // HTTPSESSION_H