From 91aff1783d364f3f2c814a90ec292cb89d5deb88 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Wed, 24 Jun 2020 21:24:22 +0930 Subject: functionality: implemented deleting selected gate with the delete key. --- Gate.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Gate.h') diff --git a/Gate.h b/Gate.h index 68afab0..ad2f212 100644 --- a/Gate.h +++ b/Gate.h @@ -59,6 +59,7 @@ class Gate //void set_output_gate(Gate *gate) { this->output_gate = gate; }; void add_output_gate_id(int id) { this->output_gate_ids.push_back(id); }; void remove_output_gate_id(int id); + void remove_input_gate(int id); void update_state(); private: -- cgit v1.2.3