File: bit_stream.h

package info (click to toggle)
dlib 19.10-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 124,860 kB
  • sloc: cpp: 293,144; xml: 25,083; python: 1,452; sh: 324; java: 229; makefile: 181; perl: 18
file content (42 lines) | stat: -rw-r--r-- 999 bytes parent folder | download | duplicates (12)
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
38
39
40
41
42
// Copyright (C) 2003  Davis E. King (davis@dlib.net)
// License: Boost Software License   See LICENSE.txt for the full license.
#ifndef DLIB_BIT_STREAm_
#define DLIB_BIT_STREAm_

#include "bit_stream/bit_stream_kernel_1.h"
#include "bit_stream/bit_stream_kernel_c.h"

#include "bit_stream/bit_stream_multi_1.h"
#include "bit_stream/bit_stream_multi_c.h"

namespace dlib
{


    class bit_stream
    {
        bit_stream() {}
    public:
        
        //----------- kernels ---------------

        // kernel_1a        
        typedef     bit_stream_kernel_1    
                    kernel_1a;
        typedef     bit_stream_kernel_c<kernel_1a >
                    kernel_1a_c;

        //---------- extensions ------------

        
        // multi_1 extend kernel_1a
        typedef     bit_stream_multi_1<kernel_1a>
                    multi_1a;
        typedef     bit_stream_multi_c<bit_stream_multi_1<kernel_1a_c> >
                    multi_1a_c;

    };
}

#endif // DLIB_BIT_STREAm_