25 lines
581 B
C++
25 lines
581 B
C++
#ifndef GERMANAIRLINESVA_GACONNECTOR_XPLUGIN_MAIN_H
|
|
#define GERMANAIRLINESVA_GACONNECTOR_XPLUGIN_MAIN_H
|
|
|
|
#include <chrono>
|
|
#include <ctime>
|
|
#include <iomanip>
|
|
#include <sstream>
|
|
#include <string>
|
|
|
|
#include "recorder.h"
|
|
|
|
#include "XPLM/XPLMDataAccess.h"
|
|
#include "XPLM/XPLMGraphics.h"
|
|
#include "XPLM/XPLMPlanes.h"
|
|
#include "XPLM/XPLMPlugin.h"
|
|
#include "XPLM/XPLMProcessing.h"
|
|
#include "XPLM/XPLMUtilities.h"
|
|
|
|
float flightLoop(float elapsedMe, float elapsedSim, int counter, void *refcon);
|
|
void serverWorker();
|
|
void recordingWorker();
|
|
void toLog(const std::string &message);
|
|
|
|
#endif
|