moved almost all hardcoded constants to "define.dat"
[k8-i-v-a-n.git] / src / felib / fetime.h
blob6e310c0c9b9b74aab93d1b89263b6e0e9d2af5a9
1 /*
3 * Iter Vehemens ad Necem (IVAN)
4 * Copyright (C) Timo Kiviluoto
5 * Released under the GNU General
6 * Public License
8 * See LICENSING which should be included
9 * along with this file for more details
12 #ifndef __FELIB_FETIME_H__
13 #define __FELIB_FETIME_H__
15 #include <ctime>
17 #include "festring.h"
20 class time {
21 public:
22 static time_t GetZeroTime ();
23 static time_t TimeAdd (time_t A, time_t B);
24 static time_t TimeDifference (time_t A, time_t B);
25 // dummies
26 static festring VerbalizeAsTimeSpent (time_t);
27 static festring VerbalizeAsCalenderTime (time_t);
31 #endif