- 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:
+13
-1
@@ -22,6 +22,9 @@
|
||||
|
||||
//[Headers] -- You can add your own extra header files here --
|
||||
#include "JuceHeader.h"
|
||||
#include "Kml.hpp"
|
||||
#include "FsLink.hpp"
|
||||
#include "HttpServer.hpp"
|
||||
//[/Headers]
|
||||
|
||||
|
||||
@@ -34,7 +37,8 @@
|
||||
Describe your class and how it works here!
|
||||
//[/Comments]
|
||||
*/
|
||||
class MainComponent : public Component
|
||||
class MainComponent : public Component,
|
||||
public IFsLinkListener
|
||||
{
|
||||
public:
|
||||
//==============================================================================
|
||||
@@ -52,10 +56,18 @@ public:
|
||||
|
||||
private:
|
||||
//[UserVariables] -- You can add your own custom variables in this section.
|
||||
ScopedPointer<FsLink> m_fsLink;
|
||||
ScopedPointer<Kml> m_kml;
|
||||
ScopedPointer<HttpServer> m_httpServer;
|
||||
|
||||
void onStateChanged(IFsLink &obj);
|
||||
void onDataChanged(IFsLink &obj);
|
||||
|
||||
//[/UserVariables]
|
||||
|
||||
//==============================================================================
|
||||
ScopedPointer<Label> m_fsuipcStatus;
|
||||
ScopedPointer<Label> m_flightStatus;
|
||||
|
||||
|
||||
//==============================================================================
|
||||
|
||||
Reference in New Issue
Block a user