#ifndef WIRE #define WIRE #include #include #include using namespace std; class gate; class wire { public: wire(int number, bool io, string inName = ""); int getValue(int time) const; void setValue(int newValue, int setTime); int getNumber() const; void addGate(gate* newGate); private: int wireNumber, value, lastEvent; vector history (60, -1); string name; bool isInput; vector gates; }; #endif // !WIRE