Remove trailing whitespace

This commit is contained in:
j883376
2013-05-06 13:07:41 -04:00
parent 7a93966158
commit ffcff4aea1
548 changed files with 16397 additions and 16398 deletions
+11 -11
View File
@@ -4,13 +4,13 @@
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY except by those people which sell it, which
are required to give you total support for your newly bought product;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
@@ -30,22 +30,22 @@ class LauncherLink {
public:
LauncherLink(int id, EmuTCPConnection *tcpc);
~LauncherLink();
bool Process();
bool SendPacket(ServerPacket* pack) { return tcpc->SendPacket(pack); }
// bool SendPacket(TCPConnection::TCPNetPacket_Struct* tnps) { return tcpc->SendPacket(tnps); }
int GetID() const { return(ID); }
void Disconnect() { tcpc->Disconnect(); }
inline bool HasName() const { return(m_name.length() > 0); }
inline uint32 GetIP() const { return tcpc->GetrIP(); }
inline uint16 GetPort() const { return tcpc->GetrPort(); }
inline const char * GetName() const { return(m_name.c_str()); }
inline int CountZones() const { return(m_states.size()); }
bool ContainsZone(const char *short_name) const;
//commands
void Shutdown();
void BootZone(const char *short_name, uint16 port);
@@ -53,19 +53,19 @@ public:
void RestartZone(const char *short_name);
void StopZone(const char *short_name);
void BootDynamics(uint8 new_total);
void GetZoneList(std::vector<std::string> &list);
void GetZoneDetails(const char *short_name, std::map<std::string,std::string> &result);
protected:
const int ID;
EmuTCPConnection*const tcpc;
bool authenticated;
std::string m_name;
Timer m_bootTimer;
uint8 m_dynamicCount;
typedef struct {
bool up;
uint32 starts; //number of times this zone has started