16 lines
316 B
C++
16 lines
316 B
C++
#ifndef BEACONPROBABILITY_H
|
|
#define BEACONPROBABILITY_H
|
|
|
|
#include "BeaconMeasurements.h"
|
|
|
|
/**
|
|
* base class for all Beacon probability calculators.
|
|
* such a calculator determines the probabilty for a location (e.g. x,y,z)
|
|
* given BeaconMeasurements
|
|
*/
|
|
class BeaconProbability {
|
|
|
|
};
|
|
|
|
#endif // BEACONPROBABILITY_H
|