/* * File: SplitDoneEvent.h * Author: noackrob * * Created on August 30, 2013, 2:56 PM */ #pragma once #ifndef SPLITDONEEVENT_H #define SPLITDONEEVENT_H #include "split/events/SplitEvent.h" #include namespace ubeeme { namespace moversight { /** * @brief Event: A split is finished. * * @class SplitDoneEvent * @author Robert Noack * @ingroup Moversight */ class SplitDoneEvent : public SplitEventGroup { public: /** * @brief Constructor. */ SplitDoneEvent() { } /** * @brief Destructor */ virtual ~SplitDoneEvent() { } virtual std::string toString() const { std::stringstream buf; buf << "SplitDoneEvent [" << "]"; return buf.str(); } private: }; } } #endif /* SPLITDONEEVENT_H */