]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/testsuite.h
Remove FindDescriptor wrapper for GetRef, it doesn't do anything useful and in fact...
[user/henk/code/inspircd.git] / include / testsuite.h
index 447e2b15e9bfd550a9666f6e4967346e0ef0f7c9..0001bdec5fe75623924c05ec262bd63d53cf8efa 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *          the file COPYING for details.
 #ifndef __TESTSUITE_H__
 #define __TESTSUITE_H__
 
+class InspIRCd;
+
+class TestSuite : public Extensible
+{
+ private:
+       InspIRCd* ServerInstance;
+ public:
+       TestSuite(InspIRCd* Instance);
+       ~TestSuite();
+
+       bool DoThreadTests();
+       bool DoWildTests();
+};
+
 #endif