Stride Reference Manual  1.0
Observer.h
Go to the documentation of this file.
1 #pragma once
2 
8 namespace stride {
9 namespace util {
10 
11 template<typename E>
12 class Observer {
13 public:
14  virtual void update(const E& subject) = 0;
15 };
16 
17 }
18 }
Time Dependent Person DataType.
Definition: NoBehaviour.h:17
virtual void update(const E &subject)=0