[Steam] Delete destructors

This commit is contained in:
momo5502 2017-01-22 23:21:52 +01:00
parent 2de95b4a3b
commit 9b88a19e35
8 changed files with 0 additions and 24 deletions

View File

@ -4,9 +4,6 @@ namespace Steam
{
class Friends
{
protected:
~Friends() = default;
public:
virtual const char *GetPersonaName();
virtual void SetPersonaName(const char *pchPersonaName);

View File

@ -4,9 +4,6 @@ namespace Steam
{
class GameServer
{
protected:
~GameServer() = default;
public:
virtual void LogOn();
virtual void LogOff();

View File

@ -4,9 +4,6 @@ namespace Steam
{
class MasterServerUpdater
{
protected:
~MasterServerUpdater() = default;
public:
virtual void SetActive(bool bActive);
virtual void SetHeartbeatInterval(int iHeartbeatInterval);

View File

@ -23,9 +23,6 @@ namespace Steam
class Matchmaking
{
protected:
~Matchmaking() = default;
public:
virtual int GetFavoriteGameCount();
virtual bool GetFavoriteGame(int iGame, unsigned int *pnAppID, unsigned int *pnIP, unsigned short *pnConnPort, unsigned short *pnQueryPort, unsigned int *punFlags, unsigned int *pRTime32LastPlayedOnServer);

View File

@ -4,9 +4,6 @@ namespace Steam
{
class Networking
{
protected:
~Networking() = default;
public:
virtual bool SendP2PPacket(SteamID steamIDRemote, const void *pubData, unsigned int cubData, int eP2PSendType);
virtual bool IsP2PPacketAvailable(unsigned int *pcubMsgSize);

View File

@ -4,9 +4,6 @@ namespace Steam
{
class RemoteStorage
{
protected:
~RemoteStorage() = default;
public:
virtual bool FileWrite(const char *pchFile, const void *pvData, int cubData);
virtual int GetFileSize(const char *pchFile);

View File

@ -4,9 +4,6 @@ namespace Steam
{
class User
{
protected:
~User() = default;
public:
virtual int GetHSteamUser();
virtual bool LoggedOn();

View File

@ -4,9 +4,6 @@ namespace Steam
{
class Utils
{
protected:
~Utils() = default;
public:
virtual unsigned int GetSecondsSinceAppActive();
virtual unsigned int GetSecondsSinceComputerActive();