1
/***************************************************************************
2
* Copyright (C) 2016 by santiago González *
3
* santigoro@gmail.com *
5
* This program is free software; you can redistribute it and/or modify *
6
* it under the terms of the GNU General Public License as published by *
7
* the Free Software Foundation; either version 3 of the License, or *
8
* (at your option) any later version. *
10
* This program is distributed in the hope that it will be useful, *
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13
* GNU General Public License for more details. *
15
* You should have received a copy of the GNU General Public License *
16
* along with this program; if not, see <http://www.gnu.org/licenses/>. *
18
***************************************************************************/
20
#include "bincounter.h"
23
static const char* BinCounter_properties[] = {
24
QT_TRANSLATE_NOOP("App::Property","Max Value")
27
Component *BinCounter::construct(QObject *parent, QString type, QString id)
29
return new BinCounter(parent, type, id);
32
LibraryItem* BinCounter::libraryItem()
34
return new LibraryItem(
36
tr ("Logic/Arithmetic"),
39
BinCounter::construct );
42
BinCounter::BinCounter(QObject *parent, QString type, QString id)
43
: LogicComponent( parent, type, id )
46
Q_UNUSED( BinCounter_properties );
59
eLogicDevice::createClockPin( m_inPin[0] ); // Input Clock
60
eLogicDevice::createInput( m_inPin[1] ); // Input Reset
61
eLogicDevice::createOutput( m_outPin[0] ); // Output Q
63
setResetInv( true ); // Invert Reset Pin
66
BinCounter::~BinCounter(){}
68
#include "moc_bincounter.cpp"