amuse/include/amuse/Listener.hpp

16 lines
178 B
C++

#ifndef __AMUSE_LISTENER_HPP__
#define __AMUSE_LISTENER_HPP__
#include "Entity.hpp"
namespace amuse
{
class Listener : public Entity
{
};
}
#endif // __AMUSE_LISTENER_HPP__