- added Kml export

- added HttpServer


git-svn-id: http://moon:8086/svn/software/trunk/projects/FsTrack@124 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2015-01-11 08:09:11 +00:00
parent 2d6b448237
commit 14fc402ff3
13 changed files with 997 additions and 9 deletions
+27
View File
@@ -0,0 +1,27 @@
/*
* 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 update(FlightData const &flightData) = 0;
virtual void export(const char *pPath) = 0;
};
#endif /* IKML_HPP */