mirror of
https://github.com/anope/anope.git
synced 2026-06-25 18:06:36 +02:00
45 lines
883 B
C++
45 lines
883 B
C++
/*
|
|
*
|
|
* (C) 2003-2024 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*/
|
|
|
|
#include "services.h"
|
|
#include "anope.h"
|
|
#include "service.h"
|
|
|
|
std::map<Anope::string, std::map<Anope::string, Service *> > Service::Services;
|
|
std::map<Anope::string, std::map<Anope::string, Anope::string> > Service::Aliases;
|
|
|
|
Base::~Base()
|
|
{
|
|
if (this->references != NULL)
|
|
{
|
|
for (auto *reference : *this->references)
|
|
reference->Invalidate();
|
|
delete this->references;
|
|
}
|
|
}
|
|
|
|
void Base::AddReference(ReferenceBase *r)
|
|
{
|
|
if (this->references == NULL)
|
|
this->references = new std::set<ReferenceBase *>();
|
|
this->references->insert(r);
|
|
}
|
|
|
|
void Base::DelReference(ReferenceBase *r)
|
|
{
|
|
if (this->references != NULL)
|
|
{
|
|
this->references->erase(r);
|
|
if (this->references->empty())
|
|
{
|
|
delete this->references;
|
|
this->references = NULL;
|
|
}
|
|
}
|
|
}
|