1
0
Fork 0

FlightHistory: make clear() public

This commit is contained in:
Torsten Dreyer 2015-02-23 16:31:49 +01:00
parent c9c0833741
commit 68c9adb489

View file

@ -57,6 +57,13 @@ public:
* the specified minimum length
*/
SGGeodVec pathForHistory(double minEdgeLengthM = 50.0) const;
/**
* clear the history
*/
void clear();
private:
/**
* @class A single data sample in the history system.
@ -103,10 +110,9 @@ private:
void allocateNewBucket();
void clear();
void capture();
size_t currentMemoryUseBytes() const;
};
#endif
#endif