aboutsummaryrefslogtreecommitdiff
path: root/Observer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Observer.h')
-rw-r--r--Observer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Observer.h b/Observer.h
index 580d539..0661bf0 100644
--- a/Observer.h
+++ b/Observer.h
@@ -5,7 +5,7 @@ class Observer {
private:
public:
- virtual void update();
+ virtual void update() = 0;
};