diff options
Diffstat (limited to 'src/threadengine.cpp')
-rw-r--r-- | src/threadengine.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/threadengine.cpp b/src/threadengine.cpp new file mode 100644 index 000000000..f16b50985 --- /dev/null +++ b/src/threadengine.cpp @@ -0,0 +1,30 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +/* $Core: libIRCDthreadengine */ + +/********* DEFAULTS **********/ +/* $ExtraSources: threadengines/threadengine_pthread.cpp */ +/* $ExtraObjects: threadengine_pthread.o */ + +#include "inspircd.h" +#include "threadengine.h" + +ThreadEngine::ThreadEngine(InspIRCd* Instance) : ServerInstance(Instance) +{ +} + +ThreadEngine::~ThreadEngine() +{ +} + |