39 lines
794 B
C++
39 lines
794 B
C++
/*
|
|
* File: MeasuringEvent.h
|
|
* Author: noackrob
|
|
*
|
|
* Created on October 8, 2013, 3:23 PM
|
|
*/
|
|
#pragma once
|
|
|
|
#ifndef MEASURINGEVENT_H
|
|
#define MEASURINGEVENT_H
|
|
|
|
#include "event/MoversightEvent.h"
|
|
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
/**
|
|
* @brief Event group containing events regarding data measurement.
|
|
* @class MeasuringEvent
|
|
* @author Robert Noack
|
|
* @ingroup Moversight
|
|
*
|
|
* Contains
|
|
* - StartMeasuringEvent
|
|
* - StopMeasuringEvent
|
|
*/
|
|
class MeasuringEvent : public MoversightEventGroup<MeasuringEvent> {
|
|
|
|
};
|
|
|
|
// create the template class MeasuringEventGroup
|
|
CREATE_EVENT_GROUP(MeasuringEvent,MoversightEventGroup);
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* MEASURINGEVENT_H */
|
|
|