blob: 1fd37417bc182969b5ae54dd9c43298b6708678a (
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
|
//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*-
// file datain.hpp
#ifndef _DATAIN_HPP
#define _DATAIN_HPP
// System includes.
#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
// Local includes.
#include "utilities.hpp"
#include "blkcom.hpp"
//#include "labcom.hpp"
#include "dekspy.hpp"
#include "over20.hpp"
#include "linemodel.hpp"
#include "freedom.hpp"
#include "movecopy.hpp"
#include "strcom.hpp"
#include "time.hpp"
namespace datain {
void datain (void);
}
#endif // _DATAIN_HPP
// end of file datain.hpp
|