Amuse
Listener.hpp
1 #ifndef __AMUSE_LISTENER_HPP__
2 #define __AMUSE_LISTENER_HPP__
3 
4 #include "Entity.hpp"
5 
6 namespace amuse
7 {
8 
9 class Listener : public Entity
10 {
11 };
12 
13 }
14 
15 #endif // __AMUSE_LISTENER_HPP__