21 lines
390 B
C
21 lines
390 B
C
|
#ifndef _HEADFILE_H
|
||
|
#define _HEADFILE_H
|
||
|
#include "iostream"
|
||
|
#include "sstream"
|
||
|
#include "fstream"
|
||
|
#include "math.h"
|
||
|
#include "string.h"
|
||
|
#include "stdlib.h"
|
||
|
#include "stdio.h"
|
||
|
|
||
|
#define ARCGIS_TXT "-arcgis_txt"
|
||
|
#define SURFER_TXT "-surfer_txt"
|
||
|
#define NULLVALUE "-n"
|
||
|
#define OUTPUT "-o"
|
||
|
#define BOLDRED "\033[1m\033[31m"
|
||
|
#define RESET "\033[0m"
|
||
|
#define MAX 1e+30
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
#endif
|