diff options
Diffstat (limited to '')
-rw-r--r-- | source/cWebPlugin.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/source/cWebPlugin.h b/source/cWebPlugin.h new file mode 100644 index 000000000..397f3ea81 --- /dev/null +++ b/source/cWebPlugin.h @@ -0,0 +1,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
\ No newline at end of file |