26 lines
634 B
C++
26 lines
634 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 WIFPROBABILITY_H
|
||
#define WIFPROBABILITY_H
|
||
|
||
#include "WiFiMeasurements.h"
|
||
|
||
/**
|
||
* base class for all WiFi probability calculators.
|
||
* such a calculator determines the probabilty for a location (e.g. x,y,z)
|
||
* given WiFiMeasurements
|
||
*/
|
||
class WiFiProbability {
|
||
|
||
};
|
||
|
||
#endif // WIFPROBABILITY_H
|