mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 12:42:58 +02:00
Merge pull request #9275 from sethalves/quiet-override-warnings
quiet some warnings
This commit is contained in:
commit
68fdb8b1c9
1 changed files with 9 additions and 9 deletions
|
@ -19,19 +19,19 @@ class QUrl;
|
||||||
|
|
||||||
class SteamAPIPlugin : public SteamClientPlugin {
|
class SteamAPIPlugin : public SteamClientPlugin {
|
||||||
public:
|
public:
|
||||||
bool isRunning();
|
bool isRunning() override;
|
||||||
|
|
||||||
bool init();
|
bool init() override;
|
||||||
void shutdown();
|
void shutdown() override;
|
||||||
|
|
||||||
void runCallbacks();
|
void runCallbacks() override;
|
||||||
|
|
||||||
void requestTicket(TicketRequestCallback callback);
|
void requestTicket(TicketRequestCallback callback) override;
|
||||||
void updateLocation(QString status, QUrl locationUrl);
|
void updateLocation(QString status, QUrl locationUrl) override;
|
||||||
void openInviteOverlay();
|
void openInviteOverlay() override;
|
||||||
void joinLobby(QString lobbyId);
|
void joinLobby(QString lobbyId) override;
|
||||||
|
|
||||||
int getSteamVRBuildID();
|
int getSteamVRBuildID() override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // hifi_SteamAPIPlugin_h
|
#endif // hifi_SteamAPIPlugin_h
|
||||||
|
|
Loading…
Reference in a new issue