summaryrefslogtreecommitdiff
path: root/Gate.h
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2020-06-30 13:31:46 +0930
committerDaniel Jones <admin@danieljon.es>2020-06-30 13:31:46 +0930
commitcad4558e56c8ec39809dd2b1235c6cc09148442b (patch)
treeaf2dc38475669c38708b7486b53bdfd282e329fd /Gate.h
parent8ecf0637c6830b26bbe2c1221847e12f96df81a4 (diff)
downloadfoxlogicgates-cad4558e56c8ec39809dd2b1235c6cc09148442b.tar.gz
foxlogicgates-cad4558e56c8ec39809dd2b1235c6cc09148442b.zip
further convert things to use object base class
Diffstat (limited to 'Gate.h')
-rw-r--r--Gate.h1
1 files changed, 0 insertions, 1 deletions
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;