summaryrefslogtreecommitdiff
path: root/include/protocol.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2016-07-28 21:29:35 -0400
committerAdam <Adam@anope.org>2016-07-28 21:29:35 -0400
commit0e758a2ac23dc4a001e8e126cec14588da9a9769 (patch)
tree45df813323e023c5c89db7279426c4ad0943b4a9 /include/protocol.h
parenta3c8afae00c54d5b95c620248b51f90679d7d53f (diff)
Allow serializable fields to use storage in the respective objects.
Split service management code nito a proper servicemanager. Make service references managed instead of lazy lookup. Also made events and serializable use service manager instead of their respective systems for management
Diffstat (limited to 'include/protocol.h')
-rw-r--r--include/protocol.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/protocol.h b/include/protocol.h
index 7af41ec2b..2e11166ee 100644
--- a/include/protocol.h
+++ b/include/protocol.h
@@ -24,6 +24,8 @@ class CoreExport IRCDProto : public Service
protected:
IRCDProto(Module *creator, const Anope::string &proto_name);
public:
+ static constexpr const char *NAME = "ircdproto";
+
virtual ~IRCDProto();
virtual void SendSVSKillInternal(const MessageSource &, User *, const Anope::string &);
@@ -274,6 +276,8 @@ class CoreExport IRCDMessage : public Service
unsigned param_count;
std::set<IRCDMessageFlag> flags;
public:
+ static constexpr const char *NAME = "IRCDMessage";
+
IRCDMessage(Module *owner, const Anope::string &n, unsigned p = 0);
unsigned GetParamCount() const;
virtual void Run(MessageSource &, const std::vector<Anope::string> &params) anope_abstract;