Annotate overridden methods

This commit is contained in:
Luis Ángel San Martín
2019-05-31 22:11:14 +02:00
parent 9140d66693
commit f29724e404
92 changed files with 288 additions and 288 deletions

View File

@ -91,7 +91,7 @@ private:
QSslConfiguration* sslConfiguration;
/** Executes the threads own event loop */
void run();
void run() override;
/** Create SSL or TCP socket */
void createSocket();

View File

@ -71,7 +71,7 @@ public:
protected:
/** Serves new incoming connection requests */
void incomingConnection(tSocketDescriptor socketDescriptor);
void incomingConnection(tSocketDescriptor socketDescriptor) override;
private:

View File

@ -49,7 +49,7 @@ public:
StaticFileController(QSettings* settings, QObject* parent = nullptr);
/** Generates the response */
void service(HttpRequest& request, HttpResponse& response);
void service(HttpRequest& request, HttpResponse& response) override;
private: