From 92c59963f82f81aa3202657e7fdbb2592924ede3 Mon Sep 17 00:00:00 2001 From: "cedeel@gmail.com" Date: Thu, 14 Jun 2012 13:06:06 +0000 Subject: Attempt to bring sanity to newlines across systems. git-svn-id: http://mc-server.googlecode.com/svn/trunk@606 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cWebPlugin.h | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'source/cWebPlugin.h') diff --git a/source/cWebPlugin.h b/source/cWebPlugin.h index 1faf4e9ae..e6eb00559 100644 --- a/source/cWebPlugin.h +++ b/source/cWebPlugin.h @@ -1,24 +1,24 @@ - -#pragma once - -struct lua_State; -struct HTTPRequest; -//tolua_begin -class cWebPlugin -{ -public: - cWebPlugin( lua_State* L ); - virtual ~cWebPlugin(); - - void SetName( std::string a_Name ) { m_Name = a_Name; } - std::string GetName() { return m_Name; } - - virtual std::string HandleRequest( HTTPRequest* a_Request ) = 0; - virtual void Initialize() = 0; - //tolua_end - - lua_State* GetLuaState() { return m_LuaState; } -private: - lua_State* m_LuaState; - std::string m_Name; + +#pragma once + +struct lua_State; +struct HTTPRequest; +//tolua_begin +class cWebPlugin +{ +public: + cWebPlugin( lua_State* L ); + virtual ~cWebPlugin(); + + void SetName( std::string a_Name ) { m_Name = a_Name; } + std::string GetName() { return m_Name; } + + virtual std::string HandleRequest( HTTPRequest* a_Request ) = 0; + virtual void Initialize() = 0; + //tolua_end + + lua_State* GetLuaState() { return m_LuaState; } +private: + lua_State* m_LuaState; + std::string m_Name; }; //tolua_export \ No newline at end of file -- cgit v1.2.3