From cad4558e56c8ec39809dd2b1235c6cc09148442b Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Tue, 30 Jun 2020 13:31:46 +0930 Subject: further convert things to use object base class --- Gate.h | 1 - 1 file changed, 1 deletion(-) (limited to 'Gate.h') diff --git a/Gate.h b/Gate.h index a1ecaf8..e0cff0a 100644 --- a/Gate.h +++ b/Gate.h @@ -48,7 +48,6 @@ class Gate : public Object void set_state(bool state) { this->output_state = state; }; void set_input_gate1(Gate *gate) { this->input_gate1 = gate; }; void set_input_gate2(Gate *gate) { this->input_gate2 = gate; }; - void add_output_object_id(int id) { this->output_object_ids.push_back(id); }; void remove_output_gate_id(int id); void remove_input_gate(int id); void update_state() override; -- cgit v1.2.3