Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 8eef50f526469c1651d4a4dc242a47901af2fb96 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
   core/module.cc
   This file is part of the Osirion project and is distributed under
   the terms of the GNU General Public License version 2
*/

#include "core/module.h"

namespace core
{

Module *Module::module_preload;

Module::Module(const char *name) 
{
	module_running = false;
	module_name.assign(name);
	module_preload = 0;
}

Module::~Module()
{
	module_running = false;
	module_name.clear();
}

	
void Module::load(Module *module)
{
	module_preload = module;
}

void Module::unload()
{
	if (module_preload) {
		delete module_preload;
		module_preload = 0;
	}
}

void Module::abort()
{
	module_running = false;
}

}