blob: 783d043c7402b930da10f6849e1e019a322607f3 (
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
|
//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*-
// file time.hpp
#ifndef _TIME_HPP
#define _TIME_HPP
#include <iostream>
#include <iomanip>
#include <ctime>
#include <cmath>
#include <sstream>
#include "utilities.hpp"
#include "dekspy.hpp"
namespace date_time {
extern std::clock_t nCPUTime;
// Functions.
bool date44(std::string *);
bool time44(std::string *);
void settym(void);
void runtym(double &, double &);
void tdelay(int &);
}
#endif // _TIME_HPP
// end of file time.hpp
|