update20140630

This commit is contained in:
stubbfel
2014-06-30 13:58:10 +02:00
parent 565970632e
commit 1e6cf42df3
877 changed files with 1146249 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
* 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;
}
}
}