18 lines
422 B
C++
18 lines
422 B
C++
#pragma once
|
|
#ifndef __SPG4FUNCTION__H__
|
|
#define __SPG4FUNCTION__H__
|
|
#include "SPG4Tool_global.h"
|
|
#include "Tle.h"
|
|
#include "SGP4.h"
|
|
#include "Observer.h"
|
|
#include "BaseConstVariable.h"
|
|
#include <vector>
|
|
|
|
//void RunTle(libsgp4::Tle tle, double start, double end, double inc);
|
|
|
|
|
|
SPG4TOOL_EXPORT std::vector<SatelliteAntPos> RunTle(libsgp4::Tle tle, double start, double end, double inc,bool printfinfoflag=false);
|
|
|
|
|
|
#endif
|