27 lines
701 B
C++
Executable File
27 lines
701 B
C++
Executable File
#ifndef POSITIONEDWIFIAP_H
|
|
#define POSITIONEDWIFIAP_H
|
|
|
|
#include "WiFiAP.h"
|
|
//#include "Position3D.h"
|
|
#include <Indoor/geo/Point3.h>
|
|
|
|
class PositionedWifiAP : public WiFiAP, public Point3 {
|
|
|
|
public:
|
|
|
|
// /** ctor */
|
|
// PositionedWifiAP(const MACAddress& mac, const std::string& ssid, const double tx, const double pl, const double xM, const double yM, const int zNr) :
|
|
// WiFiAP(mac, ssid, tx, pl), Position3D(xM, yM, zNr) {
|
|
// ;
|
|
// }
|
|
|
|
/** ctor */
|
|
PositionedWifiAP(const MACAddress& mac, const std::string& ssid, const float tx, const float pl, const float x_cm, const float y_cm, const float z_cm) :
|
|
WiFiAP(mac, ssid, tx, pl), Point3(x_cm, y_cm, z_cm) {
|
|
;
|
|
}
|
|
|
|
};
|
|
|
|
#endif // POSITIONEDWIFIAP_H
|