aboutsummaryrefslogtreecommitdiff
path: root/GateAnd.h
diff options
context:
space:
mode:
Diffstat (limited to 'GateAnd.h')
-rw-r--r--GateAnd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/GateAnd.h b/GateAnd.h
index 187f7b8..142c628 100644
--- a/GateAnd.h
+++ b/GateAnd.h
@@ -4,10 +4,10 @@
class GateAnd : public Node {
public:
- GateAnd() {};
+ GateAnd() = default;
GateAnd(const GateAnd * prototype);
- virtual ~GateAnd() = default;
- virtual void compare();
+ ~GateAnd() = default;
+ virtual void sim();
virtual GateAnd * clone() const;
private: