forked from ExternalVendorCode/Signal-Server
18 lines
514 B
C++
18 lines
514 B
C++
#ifndef _INPUTS_HH_
|
|
#define _INPUTS_HH_
|
|
|
|
#include "common.h"
|
|
|
|
int LoadSDF_SDF(char *name, int winfiles);
|
|
char LoadSDF(char *name, int winfiles);
|
|
int LoadPAT(char *filename);
|
|
void LoadSignalColors(struct site xmtr);
|
|
void LoadLossColors(struct site xmtr);
|
|
void LoadDBMColors(struct site xmtr);
|
|
void LoadTopoData(int max_lon, int min_lon, int max_lat, int min_lat);
|
|
void LoadUDT(char *filename);
|
|
int loadLIDAR(char *filename);
|
|
int loadClutter(char *filename, double radius, struct site tx);
|
|
|
|
#endif /* _INPUTS_HH_ */
|