diff options
author | Adam <Adam@anope.org> | 2011-11-17 12:46:18 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-11-17 12:46:18 -0500 |
commit | 69dfc729e99f45f16cab37f81b9f09a659d99a24 (patch) | |
tree | 063d1bba66dcfaece259a91e370919fc1ae77d5c /include/account.h | |
parent | 5281282a61601e9a6b77d129ed97e0509a0474cb (diff) |
Fixed storing mode locks
Diffstat (limited to 'include/account.h')
-rw-r--r-- | include/account.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/account.h b/include/account.h index 2d12c99cb..516bcace5 100644 --- a/include/account.h +++ b/include/account.h @@ -116,6 +116,7 @@ class CoreExport NickAlias : public Extensible, public Flags<NickNameFlag, NS_EN NickCore *nc; /* I'm an alias of this */ HostInfo hostinfo; + Anope::string serialize_name() const; serialized_data serialize(); static void unserialize(serialized_data &); @@ -162,6 +163,7 @@ class CoreExport NickCore : public Extensible, public Flags<NickCoreFlag, NI_END time_t lastmail; /* Last time this nick record got a mail */ std::list<NickAlias *> aliases; /* List of aliases */ + Anope::string serialize_name() const; serialized_data serialize(); static void unserialize(serialized_data &); |