update20140630
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* File: NotificationInfo.h
|
||||
* Author: jgaebler
|
||||
*
|
||||
* Created on December 13, 2012, 2:28 PM
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#ifndef NOTIFICATIONINFO_H
|
||||
#define NOTIFICATIONINFO_H
|
||||
|
||||
#include <cobject.h>
|
||||
#include "linklayer/contract/MACAddress.h"
|
||||
|
||||
namespace ubeeme {
|
||||
namespace moversight {
|
||||
|
||||
class NotificationInfo : public cObject {
|
||||
public:
|
||||
|
||||
const MACAddress & getApAddress() const;
|
||||
void setApAddress(const MACAddress & a);
|
||||
|
||||
const MACAddress & getStaAddress() const;
|
||||
void setStaAddress(const MACAddress & a);
|
||||
|
||||
private:
|
||||
|
||||
MACAddress apAddress;
|
||||
MACAddress staAddress;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
#endif /* NOTIFICATIONINFO_H */
|
||||
|
||||
Reference in New Issue
Block a user