blob: 7e545694bc9f5aa988ef94060f051dc52e905fef (
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
|
#include "base.h"
#include "inspircd_config.h"
#include <time.h>
#include <map>
#include <string>
bool Extensible::Extend(std::string key, VoidPointer p)
{
// only add an item if it doesnt already exist
if (this->Extension_Items.find(key) == this->Extension_Items.end())
{
this->Extension_Items[key] == p;
return true;
}
// item already exists, return false
return false;
}
bool Extensible::Shrink(std::string key)
{
// only attempt to remove a map item that exists
if (this->Extension_Items.find(key) != this->Extension_Items.end())
{
this->Extension_Items.erase(this->Extension_Items.find(key));
return true;
}
return false;
}
VoidPointer Extensible::GetExt(std::string key)
{
if (this->Extension_Items.find(key) != this->Extension_Items.end())
{
return (this->Extension_Items.find(key))->second;
}
return NULL;
}
|