mirror of
https://github.com/anope/anope.git
synced 2026-06-27 10:46:38 +02:00
8d621a71c9
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2424 5417fbe8-f217-4b02-8779-1006273d7864
12 lines
189 B
C++
12 lines
189 B
C++
#include "services.h"
|
|
|
|
NickAlias::NickAlias()
|
|
{
|
|
next = prev = NULL;
|
|
nick = last_quit = last_realname = last_usermask = NULL;
|
|
time_registered = last_seen = 0;
|
|
status = 0;
|
|
nc = NULL;
|
|
}
|
|
|