Files
FsTrack/Source/IKml.hpp
T
2015-01-29 20:00:14 +00:00

30 lines
578 B
C++

/*
* File: IKml.hpp
* Author: jens
*
* Created on 9. Januar 2015, 20:14
*/
#ifndef IKML_HPP
#define IKML_HPP
#include "IFsLink.hpp"
struct IKml
{
IKml() {}
virtual ~IKml() {}
virtual void create() = 0;
virtual void destroy() = 0;
virtual const char* getPath() = 0;
virtual void updatePlane(FlightData const &flightData) = 0;
virtual void updatePath(FlightData const &flightData) = 0;
virtual void exportKml(const char *pPath) = 0;
virtual void exportKmz(const char *pPath) = 0;
};
#endif /* IKML_HPP */