22 lines
462 B
C++
22 lines
462 B
C++
#ifndef _DATA_FUNC_H
|
|
#define _DATA_FUNC_H
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <cmath>
|
|
#include <iomanip>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#define HORIZATION "-h"
|
|
#define VERTICAL "-v"
|
|
#define ANOMOALY "-a"
|
|
#define OUTPUT "-o"
|
|
#define RANGE "-d"
|
|
#define INTERVAL "-i"
|
|
#define PARAMETER "-p"
|
|
#define HELP "--help"
|
|
#define pi 3.1415926535897932384626433832795
|
|
#define G 6.67191e-3
|
|
using namespace std;
|
|
#endif |