34 lines
651 B
C++
34 lines
651 B
C++
/*
|
|
* File: NotificationInfo.cc
|
|
* Author: jgaebler
|
|
*
|
|
* Created on December 13, 2012, 2:28 PM
|
|
*/
|
|
|
|
#include "NotificationInfo.h"
|
|
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
const MACAddress &
|
|
NotificationInfo::getApAddress() const{
|
|
return apAddress;
|
|
}
|
|
|
|
void
|
|
NotificationInfo::setApAddress(const MACAddress & a){
|
|
apAddress = a;
|
|
}
|
|
|
|
const MACAddress &
|
|
NotificationInfo::getStaAddress() const {
|
|
return staAddress;
|
|
}
|
|
|
|
void
|
|
NotificationInfo::setStaAddress(const MACAddress & a){
|
|
staAddress = a;
|
|
}
|
|
}
|
|
}
|