56 lines
1.0 KiB
C++
56 lines
1.0 KiB
C++
/*
|
|
* 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 <string>
|
|
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
/**
|
|
* @brief Event: A split is finished.
|
|
*
|
|
* @class SplitDoneEvent
|
|
* @author Robert Noack
|
|
* @ingroup Moversight
|
|
*/
|
|
class SplitDoneEvent : public SplitEventGroup<SplitDoneEvent> {
|
|
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 */
|
|
|