PICCANTE  0.4
The hottest HDR imaging library!
base.hpp
Go to the documentation of this file.
1 /*
2 
3 PICCANTE
4 The hottest HDR imaging library!
5 http://vcg.isti.cnr.it/piccante
6 
7 Copyright (C) 2014
8 Visual Computing Laboratory - ISTI CNR
9 http://vcg.isti.cnr.it
10 First author: Francesco Banterle
11 
12 This Source Code Form is subject to the terms of the Mozilla Public
13 License, v. 2.0. If a copy of the MPL was not distributed with this
14 file, You can obtain one at http://mozilla.org/MPL/2.0/.
15 
16 */
17 
18 #ifndef PIC_BASE_HPP
19 #define PIC_BASE_HPP
20 
21 namespace pic {
22 
23 typedef unsigned int uint;
24 typedef unsigned char uchar;
25 
26 typedef uint* puint;
27 typedef uchar* puchar;
28 
29 
30 #ifndef PIC_DISABLE_INLINING
31 
32 #ifndef PIC_INLINE
33  #define PIC_INLINE inline
34 #endif
35 
36 #else
37 
38 #ifndef PIC_INLINE
39  #define PIC_INLINE
40 #endif
41 
42 #endif /* PIC_ENABLE_INLINING */
43 
44 }
45 
46 #endif /* PIC_BASE_HPP */
47 
unsigned int uint
Definition: base.hpp:23
uchar * puchar
Definition: base.hpp:27
uint * puint
Definition: base.hpp:26
Definition: bilateral_separation.hpp:25
unsigned char uchar
Definition: base.hpp:24