blob: 2fb2941ceebf8524609cfca61f5cc8ff55006b4a (
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
63
64
65
66
67
|
//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*-
// file over20.hpp
#ifndef _OVER20_HPP
#define _OVER20_HPP
// System includes.
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <thread>
#include <chrono>
#include <limits>
#include <vector>
// Local includes.
#include "blkcom.hpp"
#include "dekspy.hpp"
#include "dekplt.hpp"
#include "comlock.hpp"
#include "labcom.hpp"
#include "random.hpp"
#include "main.hpp"
#include "newmods.hpp"
#include "utilities.hpp"
#include "strcom.hpp"
#include "location.hpp"
#include "time.hpp"
#include "plot.hpp"
// Prototypes.
namespace over20 {
void over20(void);
void katalg(void);
void emtspy(void);
void spying(void);
void spyink(void);
void initsp(void);
void kwiter(int[ 3 ]);
void percnt(std::string *, const int &);
void numchk(std::string *, const int &, int &);
void getnum(int &);
void spylin(void);
void spyout(const int &, const int &);
void examin(void);
void deposi(const int &, int &, int &, double &);
void append(void);
void intpar(const int &, int &, int &, int &);
void sosrng(int &);
void locatn(void);
void stopin(void);
void helper(int &);
void timval(void);
void back14(void);
void setrtm(void);
void flatbd(void);
}
#endif // _OVER20_HPP
// end of file over20.hpp
|