diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-08 15:51:30 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-08 15:51:30 +0000 |
commit | 4f1d3a7192ea1b081b47f2ca1899aa25061b270d (patch) | |
tree | 734eb7ecc8d5aede1dbedb6324398e8b9995ebcd /include | |
parent | 922d4ebf7a27a6577d6b4f91e0f42ccdfa989455 (diff) |
FindMatchingLocal/FindMatchingGlobal -> userrec::LocalCloneCount(), userrec::GlobalCloneCount()
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4794 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/users.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/users.h b/include/users.h index bfee92f83..983ae193e 100644 --- a/include/users.h +++ b/include/users.h @@ -449,6 +449,9 @@ class userrec : public connection void UnOper(); +long GlobalCloneCount(); +long LocalCloneCount(); + /** Default destructor */ virtual ~userrec(); @@ -483,7 +486,4 @@ bool DoType(const char* tag, char** entries, void** values, int* types); bool DoClass(const char* tag, char** entries, void** values, int* types); bool DoneClassesAndTypes(const char* tag); -long FindMatchingGlobal(userrec* user); -long FindMatchingLocal(userrec* user); - #endif |