29 lines
672 B
C++
29 lines
672 B
C++
#ifndef GERMANAIRLINESVA_GACONNECTOR_XPLUGIN_MAIN_H
|
|
#define GERMANAIRLINESVA_GACONNECTOR_XPLUGIN_MAIN_H
|
|
|
|
#include "config.hpp"
|
|
#include "makeRwysXP.h"
|
|
#include "simulatorDatabase.hpp"
|
|
#include "websocket.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"
|
|
|
|
#include <atomic>
|
|
#include <chrono>
|
|
#include <cstdint>
|
|
#include <mutex>
|
|
#include <queue>
|
|
#include <sstream>
|
|
#include <thread>
|
|
|
|
float flightLoop(float elapsedMe, float elapsedSim, int counter, void *refcon);
|
|
void serverWorker();
|
|
void toLog(const std::string &message);
|
|
|
|
#endif
|