summaryrefslogtreecommitdiffstats
path: root/source/cWebPlugin.cpp
blob: 186662ba8ad9ef604b0676da2f64c54a55b50391 (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
26

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "cWebPlugin.h"
#include "cWebAdmin.h"
#include "cServer.h"
#include "cRoot.h"





cWebPlugin::cWebPlugin( lua_State* L )
{
	LOG("cWebPlugin::cWebPlugin()");
	m_LuaState = L;
	cWebAdmin* WebAdmin = cRoot::Get()->GetWebAdmin();
	if( WebAdmin ) WebAdmin->AddPlugin( this );
}

cWebPlugin::~cWebPlugin()
{
	LOG("~cWebPlugin::cWebPlugin()");
	cWebAdmin* WebAdmin = cRoot::Get()->GetWebAdmin();
	if( WebAdmin ) WebAdmin->RemovePlugin( this );
}