]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/usermanager.h
Get rid of the NICKForced extension
[user/henk/code/inspircd.git] / include / usermanager.h
index 812d8e2f2b77b47b37e133d38b77d5c6f2687dd3..1ab48925d865b3b3ea42fab3d2094a281ffc0ac8 100644 (file)
@@ -17,8 +17,7 @@
  */
 
 
-#ifndef USERMANAGER_H
-#define USERMANAGER_H
+#pragma once
 
 #include <list>
 
@@ -149,9 +148,6 @@ class CoreExport UserManager
         */
        unsigned int LocalUserCount();
 
-
-
-
        /** Number of users with a certain mode set on them
         */
        int ModeCount(const char mode);
@@ -161,12 +157,4 @@ class CoreExport UserManager
         * @param ... The format arguments
         */
        void ServerNoticeAll(const char* text, ...) CUSTOM_PRINTF(2, 3);
-
-       /** Send a server message (PRIVMSG) to all local users
-        * @param text The text format string to send
-        * @param ... The format arguments
-        */
-       void ServerPrivmsgAll(const char* text, ...) CUSTOM_PRINTF(2, 3);
 };
-
-#endif