summaryrefslogtreecommitdiff
path: root/Gate.h
diff options
context:
space:
mode:
Diffstat (limited to 'Gate.h')
-rw-r--r--Gate.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Gate.h b/Gate.h
index ab6b238..c8cd492 100644
--- a/Gate.h
+++ b/Gate.h
@@ -46,12 +46,11 @@ class Gate : public Object
Gate *get_input_gate2() { return this->input_gate2; };
void set_input_gate1(Gate *gate) { this->input_gate1 = gate; };
void set_input_gate2(Gate *gate) { this->input_gate2 = gate; };
- void remove_input_gate(int id);
+ void remove_input_object(int id) override;
void update_state() override;
std::string get_object_name() override { return get_output_type_text(); };
-
private:
GATE_TYPE gate_type;