00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #include "DlgValidatorAbstract.h" 00008 #include "Logger.h" 00009 00010 DlgValidatorAbstract::DlgValidatorAbstract(QObject *parent) : 00011 QDoubleValidator(parent) 00012 { 00013 LOG4CPP_INFO_S ((*mainCat)) << "DlgValidatorAbstract::DlgValidatorAbstract"; 00014 } 00015 00016 DlgValidatorAbstract::~DlgValidatorAbstract() 00017 { 00018 LOG4CPP_INFO_S ((*mainCat)) << "DlgValidatorAbstract::~DlgValidatorAbstract"; 00019 }