File indexing completed on 2024-05-05 05:46:06

0001 /***************************************************************************
0002  *   Copyright (C) 2004 by David Saxton                                    *
0003  *   david@bluehaze.org                                                    *
0004  *                                                                         *
0005  *   This program is free software; you can redistribute it and/or modify  *
0006  *   it under the terms of the GNU General Public License as published by  *
0007  *   the Free Software Foundation; either version 2 of the License, or     *
0008  *   (at your option) any later version.                                   *
0009  ***************************************************************************/
0010 
0011 #ifndef ECFullAdder_H
0012 #define ECFullAdder_H
0013 
0014 #include "component.h"
0015 #include "logic.h"
0016 
0017 /**
0018 @author David Saxton
0019 */
0020 class FullAdder : public CallbackClass, public Component
0021 {
0022 public:
0023     FullAdder(ICNDocument *icnDocument, bool newItem, const char *id = nullptr);
0024     ~FullAdder() override;
0025 
0026     static Item *construct(ItemDocument *itemDocument, bool newItem, const char *id);
0027     static LibraryItem *libraryItem();
0028 
0029 public: // internal interfaces
0030     void inStateChanged(bool newState);
0031 protected:
0032 
0033     LogicIn *ALogic, *BLogic, *inLogic;
0034     LogicOut *outLogic, *SLogic;
0035 };
0036 
0037 #endif