File: timer.h

package info (click to toggle)
mldemos 0.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 32,224 kB
  • ctags: 46,525
  • sloc: cpp: 306,887; ansic: 167,718; ml: 126; sh: 109; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (4)
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
// Copyright (C) 2005  Davis E. King (davis@dlib.net)
// License: Boost Software License   See LICENSE.txt for the full license.
#ifndef DLIB_TIMEr_
#define DLIB_TIMEr_

#include "timer/timer_kernel_1.h"
#include "timer/timer_kernel_2.h"
#include "uintn.h"

namespace dlib
{

    template <
        typename T
        >
    class timer
    {
        timer() {}



    public:
        
        //----------- kernels ---------------

        // kernel_1a
        typedef     timer_kernel_1<T>
                    kernel_1a;

        // kernel_2a
        typedef     timer_kernel_2<T>
                    kernel_2a;
    };
}

#endif // DLIB_TIMEr_