summaryrefslogtreecommitdiffstats
path: root/source/cWebPlugin.h
blob: 397f3ea8156ec41457678833655829e9d9ca2474 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#include <string>

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