mirror of
https://github.com/YACReader/yacreader
synced 2025-11-12 13:02:51 -05:00
Annotate overridden methods
This commit is contained in:
@ -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();
|
||||
|
||||
@ -71,7 +71,7 @@ public:
|
||||
protected:
|
||||
|
||||
/** Serves new incoming connection requests */
|
||||
void incomingConnection(tSocketDescriptor socketDescriptor);
|
||||
void incomingConnection(tSocketDescriptor socketDescriptor) override;
|
||||
|
||||
private:
|
||||
|
||||
|
||||
@ -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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user