]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - win/inspircd_namedpipe.h
Change User::SetClientIP() to be virtual
[user/henk/code/inspircd.git] / win / inspircd_namedpipe.h
index 98647d1b8e56296ad7dddbb06da9e6e783ed57e4..e6be0e4816d8fce3e0c9c0a083a4247a84a99db6 100644 (file)
@@ -1,22 +1,39 @@
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
+ *
+ *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
+ *
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
 #ifndef INSPIRCD_NAMEDPIPE
 #define INSPIRCD_NAMEDPIPE
 
 #include "threadengine.h"
 #include <windows.h>
 
-class InspIRCd;
-
 class IPCThread : public Thread
 {
        BOOL Connected;
        DWORD BytesRead;
        BOOL Success;
        HANDLE Pipe;
-       InspIRCd* ServerInstance;
        char status[MAXBUF];
        int result;
  public:
-       IPCThread(InspIRCd* Instance);
+       IPCThread();
        virtual ~IPCThread();
        virtual void Run();
        const char GetStatus();
@@ -28,12 +45,11 @@ class IPCThread : public Thread
 class IPC
 {
  private:
-       InspIRCd* ServerInstance;
        IPCThread* thread;
  public:
-       IPC(InspIRCd* Srv);
+       IPC();
        void Check();
        ~IPC();
 };
 
-#endif
\ No newline at end of file
+#endif