You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWATI/Src/nmNum/nmData/nmSingalCenter.cpp

21 lines
396 B
C++

#include "nmSingalCenter.h"
nmSingalCenter::nmSingalCenter(QObject *parent) : QObject(parent)
{
}
nmSingalCenter* nmSingalCenter::s_instance = NULL;
nmSingalCenter* nmSingalCenter::getInstance()
{
if (NULL == s_instance) {
s_instance = new nmSingalCenter();
}
return s_instance;
}
void nmSingalCenter::emitSigDeleteWell(QString wellID)
{
emit sigDeleteWell(wellID);
}