39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
/*
|
|
* File: ControlMessageConfirm.h
|
|
* Author: jgaebler
|
|
*
|
|
* Created on February 9, 2011, 5:50 PM
|
|
*/
|
|
#pragma once
|
|
|
|
#ifndef CONTROLMESSAGECONFIRM_H
|
|
#define CONTROLMESSAGECONFIRM_H
|
|
|
|
#include "common/Defines.h"
|
|
#include "common/transport/msg/MoversightMessage.h"
|
|
|
|
namespace ubeeme {
|
|
namespace moversight{
|
|
|
|
/**
|
|
* @brief Defines an NFD control message confirm message to response to a control message of a peer.
|
|
* @author Jan Gäbler, Robert Noack
|
|
* @ingroup Moversight
|
|
* @class ControlMessageConfirm
|
|
*/
|
|
class ControlMessageConfirm : public MoversightMessage {
|
|
public:
|
|
|
|
ControlMessageConfirm();
|
|
ControlMessageConfirm(const ControlMessageConfirm & other);
|
|
virtual ~ControlMessageConfirm();
|
|
|
|
ControlMessageConfirm* dup() const;
|
|
ControlMessageConfirm& operator=( const ControlMessageConfirm& other);
|
|
|
|
void handleReceive(Dispatcher & dis);
|
|
};
|
|
}
|
|
}
|
|
#endif /* CONTROLMESSAGECONFIRM_H */
|