move arguments back to the constructtor

This commit is contained in:
Jeff Hill
2000-05-25 14:43:47 +00:00
parent ad792ae19a
commit 2c47e57940

View File

@@ -18,11 +18,11 @@
#include <iocinf.h>
processThread::processThread (cac *pcacIn) :
osiThread (),
osiThread ("CAC process", 0x1000, threadPriorityMedium),
pcac (pcacIn),
shutDown (false)
{
start("CAC process", 0x1000, threadPriorityMedium);
this->start ();
}
processThread::~processThread ()