initial commit before ownership transfer
This commit is contained in:
23
code/frank/PositionedBeacon.h
Executable file
23
code/frank/PositionedBeacon.h
Executable file
@@ -0,0 +1,23 @@
|
||||
#ifndef POSITIONEDBEACON_H
|
||||
#define POSITIONEDBEACON_H
|
||||
|
||||
#include "WiFiAP.h"
|
||||
#include "Position3D.h"
|
||||
|
||||
class PositionedBeacon : public Position3D {
|
||||
|
||||
public:
|
||||
|
||||
MACAddress mac;
|
||||
double tx;
|
||||
double pl;
|
||||
|
||||
/** ctor */
|
||||
PositionedBeacon(const MACAddress& mac, const double tx, const double pl, const double xM, const double yM, const int zNr) :
|
||||
mac(mac), tx(tx), pl(pl), Position3D(xM, yM, zNr) {
|
||||
;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
#endif // POSITIONEDBEACON_H
|
||||
Reference in New Issue
Block a user