@@ -52,8 +52,8 @@ class GameSpyGameSlot : public GameSlot
5252 void setFavoriteSide ( Int val ) { m_favoriteSide = val; }
5353
5454 void setPingString ( AsciiString pingStr );
55- inline AsciiString getPingString ( void ) const { return m_pingStr; }
56- inline Int getPingAsInt ( void ) const { return m_pingInt; }
55+ AsciiString getPingString ( void ) const { return m_pingStr; }
56+ Int getPingAsInt ( void ) const { return m_pingInt; }
5757
5858protected:
5959 Int m_profileID;
@@ -99,37 +99,37 @@ class GameSpyStagingRoom : public GameInfo
9999 virtual void reset ( void );
100100
101101 void cleanUpSlotPointers (void );
102- inline void setID (Int id) { m_id = id; }
103- inline Int getID ( void ) const { return m_id; }
104-
105- inline void setHasPassword (Bool val) { m_requiresPassword = val; }
106- inline Bool getHasPassword (void ) const { return m_requiresPassword; }
107- inline void setAllowObservers (Bool val) { m_allowObservers = val; }
108- inline Bool getAllowObservers (void ) const { return m_allowObservers; }
109-
110- inline void setVersion (UnsignedInt val) { m_version = val; }
111- inline UnsignedInt getVersion (void ) const { return m_version; }
112- inline void setExeCRC (UnsignedInt val) { m_exeCRC = val; }
113- inline UnsignedInt getExeCRC (void ) const { return m_exeCRC; }
114- inline void setIniCRC (UnsignedInt val) { m_iniCRC = val; }
115- inline UnsignedInt getIniCRC (void ) const { return m_iniCRC; }
116-
117- inline void setReportedNumPlayers (Int val) { m_reportedNumPlayers = val; }
118- inline Int getReportedNumPlayers (void ) const { return m_reportedNumPlayers; }
119-
120- inline void setReportedMaxPlayers (Int val) { m_reportedMaxPlayers = val; }
121- inline Int getReportedMaxPlayers (void ) const { return m_reportedMaxPlayers; }
122-
123- inline void setReportedNumObservers (Int val) { m_reportedNumObservers = val; }
124- inline Int getReportedNumObservers (void ) const { return m_reportedNumObservers; }
125-
126- inline void setLadderIP ( AsciiString ladderIP ) { m_ladderIP = ladderIP; }
127- inline AsciiString getLadderIP ( void ) const { return m_ladderIP; }
128- inline void setLadderPort ( UnsignedShort ladderPort ) { m_ladderPort = ladderPort; }
129- inline UnsignedShort getLadderPort ( void ) const { return m_ladderPort; }
102+ void setID (Int id) { m_id = id; }
103+ Int getID ( void ) const { return m_id; }
104+
105+ void setHasPassword (Bool val) { m_requiresPassword = val; }
106+ Bool getHasPassword (void ) const { return m_requiresPassword; }
107+ void setAllowObservers (Bool val) { m_allowObservers = val; }
108+ Bool getAllowObservers (void ) const { return m_allowObservers; }
109+
110+ void setVersion (UnsignedInt val) { m_version = val; }
111+ UnsignedInt getVersion (void ) const { return m_version; }
112+ void setExeCRC (UnsignedInt val) { m_exeCRC = val; }
113+ UnsignedInt getExeCRC (void ) const { return m_exeCRC; }
114+ void setIniCRC (UnsignedInt val) { m_iniCRC = val; }
115+ UnsignedInt getIniCRC (void ) const { return m_iniCRC; }
116+
117+ void setReportedNumPlayers (Int val) { m_reportedNumPlayers = val; }
118+ Int getReportedNumPlayers (void ) const { return m_reportedNumPlayers; }
119+
120+ void setReportedMaxPlayers (Int val) { m_reportedMaxPlayers = val; }
121+ Int getReportedMaxPlayers (void ) const { return m_reportedMaxPlayers; }
122+
123+ void setReportedNumObservers (Int val) { m_reportedNumObservers = val; }
124+ Int getReportedNumObservers (void ) const { return m_reportedNumObservers; }
125+
126+ void setLadderIP ( AsciiString ladderIP ) { m_ladderIP = ladderIP; }
127+ AsciiString getLadderIP ( void ) const { return m_ladderIP; }
128+ void setLadderPort ( UnsignedShort ladderPort ) { m_ladderPort = ladderPort; }
129+ UnsignedShort getLadderPort ( void ) const { return m_ladderPort; }
130130 void setPingString ( AsciiString pingStr );
131- inline AsciiString getPingString ( void ) const { return m_pingStr; }
132- inline Int getPingAsInt ( void ) const { return m_pingInt; }
131+ AsciiString getPingString ( void ) const { return m_pingStr; }
132+ Int getPingAsInt ( void ) const { return m_pingInt; }
133133
134134 virtual Bool amIHost ( void ) const ; // /< Convenience function - is the local player the game host?
135135
@@ -147,10 +147,10 @@ class GameSpyStagingRoom : public GameInfo
147147 void launchGame ( void ); // /< NAT negotiation has finished - really start
148148 virtual Int getLocalSlotNum ( void ) const ; // /< Get the local slot number, or -1 if we're not present
149149
150- inline void setGameName ( UnicodeString name ) { m_gameName = name; }
151- inline UnicodeString getGameName ( void ) const { return m_gameName; }
150+ void setGameName ( UnicodeString name ) { m_gameName = name; }
151+ UnicodeString getGameName ( void ) const { return m_gameName; }
152152
153- inline void setLocalName ( AsciiString name ) { m_localName = name; }
153+ void setLocalName ( AsciiString name ) { m_localName = name; }
154154};
155155
156156extern GameSpyStagingRoom *TheGameSpyGame;
0 commit comments