moved almost all hardcoded constants to "define.dat"
[k8-i-v-a-n.git] / src / felib / fetime.cpp
blob1abcaf40592aa6f569bdc933da8337f28752d4f9
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 /* this file might have some problems with some obscure systems; but it also should be rather easy to fix. */
13 #include <ctime>
15 #include "fetime.h"
18 time_t time::GetZeroTime () { return 0; }
19 time_t time::TimeAdd (time_t A, time_t B) { return A+B; }
20 time_t time::TimeDifference (time_t A, time_t B) { return A-B; }
22 festring time::VerbalizeAsTimeSpent (time_t) { return "mur"; }
23 festring time::VerbalizeAsCalenderTime (time_t) { return "murimuri"; }