mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
29 lines
No EOL
589 B
C++
29 lines
No EOL
589 B
C++
#pragma once
|
|
|
|
#include "common/geodetic/geodetic_coordinates.h"
|
|
#include "nlohmann/json.hpp"
|
|
#include "tracking.h"
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
namespace satdump
|
|
{
|
|
namespace tracking
|
|
{
|
|
class ObjectBackend
|
|
{
|
|
};
|
|
|
|
class Object
|
|
{
|
|
protected:
|
|
std::map<backend_type_t, std::shared_ptr<ObjectBackend>> backends;
|
|
|
|
public:
|
|
Object(nlohmann::json p);
|
|
~Object();
|
|
|
|
virtual geodetic::geodetic_coords_t getGeoPos(double time);
|
|
};
|
|
} // namespace tracking
|
|
} // namespace satdump
|