summaryrefslogtreecommitdiff
path: root/Object.h
diff options
context:
space:
mode:
Diffstat (limited to 'Object.h')
-rw-r--r--Object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Object.h b/Object.h
index e4e504b..f295491 100644
--- a/Object.h
+++ b/Object.h
@@ -55,7 +55,7 @@ class Object
void add_output_object_id(int id_) { this->output_object_ids.push_back(id_); };
- virtual void update_state() {}; // subclasses must implement
+ virtual void update_state() = 0; // subclasses must implement
static void set_object_id_counter(int id_) { object_id_counter = id_; };
static int get_object_id_counter() { return object_id_counter; };