Fixed whitespace in all files (no tabs)
[senf.git] / Utils / MicroTime.cc
1 // $Id$
2 //
3 // Copyright (C) 2006 Stefan Bund <g0dil@senf.berlios.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the
17 // Free Software Foundation, Inc.,
18 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 /** \file
21     \brief MicroTime non-inline non-template implementation */
22
23 #include "MicroTime.hh"
24 //#include "MicroTime.ih"
25
26 // Custom includes
27 #include <sys/time.h>
28 #include <time.h>
29 #include <errno.h>
30
31 #include "Utils/Exception.hh"
32
33 //#include "MicroTime.mpp"
34 #define prefix_
35 ///////////////////////////////cc.p////////////////////////////////////////
36
37 prefix_ senf::MicroTime senf::now()
38 {
39     struct timeval tv;
40     if (gettimeofday(&tv,0) < 0)
41         throw SystemException(errno);
42     return 1000000*MicroTime(tv.tv_sec) + tv.tv_usec;
43 }
44
45
46 ///////////////////////////////cc.e////////////////////////////////////////
47 #undef prefix_
48 //#include "MicroTime.mpp"
49
50 \f
51 // Local Variables:
52 // mode: c++
53 // fill-column: 100
54 // c-file-style: "senf"
55 // indent-tabs-mode: nil
56 // ispell-local-dictionary: "american"
57 // End: