#ifndef _DialogueManager_H__ #define _DialogueManager_H__ #include "notifications/NotificationsPrereqs.h" #include "notifications/NotificationDispatcher.h" namespace orxonox{ class _NotificationsExport DialogueManager: public NotificationDispatcher{ public: DialogueManager(Context* context); //!< Default Constructor. virtual ~DialogueManager(); //!< Destructor. virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); }; } #endif