summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2017-10-07 21:10:47 -0400
committerAdam <Adam@anope.org>2017-10-07 21:10:47 -0400
commit2312f1fbd06ac01bb55e1d99070cde05a09a5a17 (patch)
tree69239628ed39e342650574f93d441f58d6d82b7b /include
parent286bffa2cd6a3f564334c5a4669ea3aadfb27a0a (diff)
No longer expose c->ci and ci->c
Diffstat (limited to 'include')
-rw-r--r--include/channels.h6
-rw-r--r--include/modules/chanserv/channel.h4
2 files changed, 6 insertions, 4 deletions
diff --git a/include/channels.h b/include/channels.h
index 63e0559c3..d04a63bcf 100644
--- a/include/channels.h
+++ b/include/channels.h
@@ -53,8 +53,6 @@ class CoreExport Channel : public Base, public Extensible
public:
/* Channel name */
Anope::string name;
- /* Set if this channel is registered. ci->c == this. Contains information relevant to the registered channel */
- Serialize::Reference<ChanServ::Channel> ci;
/* When the channel was created */
time_t creation_time;
/* If the channel has just been created in a netjoin */
@@ -98,6 +96,10 @@ class CoreExport Channel : public Base, public Extensible
*/
~Channel();
+ /** Get the chanserv channel for this channel
+ */
+ ChanServ::Channel *GetChannel();
+
/** Gets the channels name
* @return the channel name
*/
diff --git a/include/modules/chanserv/channel.h b/include/modules/chanserv/channel.h
index a3b06b350..aab95de67 100644
--- a/include/modules/chanserv/channel.h
+++ b/include/modules/chanserv/channel.h
@@ -25,12 +25,12 @@ namespace ChanServ
class CoreExport Channel : public Serialize::Object
{
public:
- ::Channel *c = nullptr; /* Pointer to channel, if the channel exists */
-
static constexpr const char *const NAME = "channel";
using Serialize::Object::Object;
+ ::Channel *GetChannel() { return ::Channel::Find(GetName()); }
+
virtual Anope::string GetName() anope_abstract;
virtual void SetName(const Anope::string &) anope_abstract;