38 lines
1.0 KiB
C++
38 lines
1.0 KiB
C++
#ifndef GERMANAIRLINESVA_FILE_SIMDATAXP_H
|
|
#define GERMANAIRLINESVA_FILE_SIMDATAXP_H
|
|
|
|
#include <fstream>
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include "simdata/gate.h"
|
|
#include "simdata/runway.h"
|
|
#include "simdata/simDatabase.h"
|
|
#include "util.hpp"
|
|
|
|
namespace germanairlinesva
|
|
{
|
|
namespace file
|
|
{
|
|
namespace simdata
|
|
{
|
|
int scan(const std::string defaultFile,
|
|
const std::string sceneryPack,
|
|
const std::string logFile,
|
|
SimDatabase &airports);
|
|
|
|
void makeAirport(const std::string &kind,
|
|
std::ifstream &infile,
|
|
SimDatabase &airports,
|
|
std::ofstream &logfile);
|
|
void makeGate15(std::vector<Gate> &gates,
|
|
const std::vector<std::string> &fields);
|
|
void makeRunway(std::vector<Runway> &runways,
|
|
const std::vector<std::string> &fields);
|
|
void makeGate1300(std::vector<Gate> &gates,
|
|
const std::vector<std::string> &fields);
|
|
} // namespace simdata
|
|
} // namespace file
|
|
} // namespace germanairlinesva
|
|
|
|
#endif |