Namespaces and formatting
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef GERMANAIRLINESVA_FILE_RECORDINGENTRY_H
|
||||
#define GERMANAIRLINESVA_FILE_RECORDINGENTRY_H
|
||||
#ifndef GERMANAIRLINESVA_FILE_RECORDING_RECORDINGENTRY_H
|
||||
#define GERMANAIRLINESVA_FILE_RECORDING_RECORDINGENTRY_H
|
||||
|
||||
#include <cstdint>
|
||||
#include <fstream>
|
||||
@@ -26,14 +26,14 @@ namespace file
|
||||
std::uint32_t time;
|
||||
std::uint16_t altitude = 0;
|
||||
std::uint16_t groundSpeed = 0;
|
||||
struct geodata::point coordinates = {NAN, NAN};
|
||||
struct utilities::geodata::point coordinates = {NAN, NAN};
|
||||
|
||||
public:
|
||||
inline RecordingEntry() = default;
|
||||
inline RecordingEntry(std::uint32_t time,
|
||||
std::uint16_t altitude,
|
||||
std::uint16_t groundSpeed,
|
||||
struct geodata::point coordinates)
|
||||
struct utilities::geodata::point coordinates)
|
||||
: time(time), altitude(altitude), groundSpeed(groundSpeed),
|
||||
coordinates(coordinates)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user