diff options
Diffstat (limited to 'protocols/Xfire/src/xfiregame.h')
| -rw-r--r-- | protocols/Xfire/src/xfiregame.h | 17 | 
1 files changed, 6 insertions, 11 deletions
| diff --git a/protocols/Xfire/src/xfiregame.h b/protocols/Xfire/src/xfiregame.h index b8293750ad..baf3fc153f 100644 --- a/protocols/Xfire/src/xfiregame.h +++ b/protocols/Xfire/src/xfiregame.h @@ -24,19 +24,14 @@  #ifndef __XFIREGAME_H  #define __XFIREGAME_H -#include <string> -  namespace xfirelib { -  class XFireGame { -  public: -    virtual ~XFireGame() { } -    virtual int getGameId() = 0; -    virtual std::string getGameName() = 0; -  }; - - +	class XFireGame { +	public: +		virtual ~XFireGame() { } +		virtual int getGameId() = 0; +		virtual std::string getGameName() = 0; +	};  }; -  #endif | 
