summaryrefslogtreecommitdiff
path: root/src/xline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xline.cpp')
-rw-r--r--src/xline.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/xline.cpp b/src/xline.cpp
index 75f689265..b970ad9e7 100644
--- a/src/xline.cpp
+++ b/src/xline.cpp
@@ -650,3 +650,37 @@ const char* QLine::Displayable()
return nick;
}
+bool XLineManager::RegisterFactory(XLineFactory* xlf)
+{
+ std::map<char, XLineFactory*>::iterator n = line_factory.find(xlf->GetType());
+
+ if (n != line_factory.end())
+ return false;
+
+ line_factory[xlf->GetType()] = xlf;
+
+ return true;
+}
+
+bool XLineManager::UnregisterFactory(XLineFactory* xlf)
+{
+ std::map<char, XLineFactory*>::iterator n = line_factory.find(xlf->GetType());
+
+ if (n == line_factory.end())
+ return false;
+
+ line_factory.erase(n);
+
+ return true;
+}
+
+XLineFactory* XLineManager::GetFactory(const char type)
+{
+ std::map<char, XLineFactory*>::iterator n = line_factory.find(type);
+
+ if (n != line_factory.end())
+ return NULL;
+
+ return n->second;
+}
+