blob: 4c8ae3461f71616e812eee54ea50c0aee25eaaf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*-
// file main.hpp
#ifndef _MAIN_HPP
#define _MAIN_HPP
// System includes.
#include <iostream>
#include <iomanip>
#include <exception>
#include <stdexcept>
#include <fstream>
#include <sstream>
#include <string>
#include <cstdlib>
#include <ctime>
#include <cmath>
#include <functional>
#include <utility>
// UNIX/Linux specifics.
#include <unistd.h>
#include <getopt.h>
#include <err.h>
// local includes.
#include "blkcom.hpp"
#include "labcom.hpp"
//#include "volt45.hpp"
#include "datain.hpp"
#include "emtp.hpp"
#ifdef WITH_OVER1
#include "over1.hpp"
#endif
#ifdef WITH_OVER20
#include "over20.hpp"
#endif
#ifdef WITH_OVER51
#include "over51.hpp"
#endif
#include "newmods.hpp"
//#include "location.hpp"
//#include "strcom.hpp"
//#include "movecopy.hpp"
//#include "time.hpp"
extern int opterr;
extern int optind;
extern char *optarg;
int main(int, char *[]);
#endif // _MAIN_HPP
// end of file main.hpp
|