26 lines
651 B
C++
26 lines
651 B
C++
/*
|
||
* © Copyright 2014 – Urheberrechtshinweis
|
||
* Alle Rechte vorbehalten / All Rights Reserved
|
||
*
|
||
* Programmcode ist urheberrechtlich geschuetzt.
|
||
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
|
||
* Keine Verwendung ohne explizite Genehmigung.
|
||
* (vgl. § 106 ff UrhG / § 97 UrhG)
|
||
*/
|
||
|
||
#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
|