From 61a3297b662b1bd8621016c8b5b492dd37bf5675 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Tue, 30 Jun 2020 14:35:57 +0930 Subject: Functionality: begin implementing binary display --- Gate.cpp | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'Gate.cpp') diff --git a/Gate.cpp b/Gate.cpp index e389a34..7475dd9 100644 --- a/Gate.cpp +++ b/Gate.cpp @@ -38,21 +38,6 @@ Gate::Gate(GATE_TYPE type, int x, int y, int width, int height, int loaded_id) Gate::~Gate() {} -void -Gate::remove_output_gate_id(int id) -{ - int pos = 0; - for(auto o = output_object_ids.begin(); o != output_object_ids.end(); ++o) - { - if (id == (*o)) - { - output_object_ids.erase(output_object_ids.begin() + pos); - break; - } - pos++; - } -} - void Gate::remove_input_gate(int id) { -- cgit v1.2.3