aboutsummaryrefslogtreecommitdiff
path: root/GateAnd.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-06-12 14:01:17 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-06-12 14:01:17 +0200
commitefa2f195a5f9c356318fb50532168fa2ee4c0979 (patch)
treef0e78786cd5b71ff0e389b7842f2a88f4b4f7358 /GateAnd.h
parent72c9b98b074d98d60983b178b06e1872eb96c242 (diff)
parenta7eb10e81568b65c39d6e1d042309916a9180a2b (diff)
Merge branch 'master' of github.com:lonkaars/depa
Diffstat (limited to 'GateAnd.h')
-rw-r--r--GateAnd.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/GateAnd.h b/GateAnd.h
index 5eedc07..12dad53 100644
--- a/GateAnd.h
+++ b/GateAnd.h
@@ -4,9 +4,10 @@
class GateAnd : public Node {
public:
+ GateAnd() = default;
GateAnd(const GateAnd * prototype);
- virtual ~GateAnd() = default;
- virtual void compare();
+ ~GateAnd() = default;
+ virtual void sim();
virtual GateAnd * clone() const;
private: