All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
cstdint.h
Go to the documentation of this file.
1 /* cstdint.h
2  */
3 #ifndef OSL_CSTDINT_H
4 #define OSL_CSTDINT_H
5 
6 #include <boost/cstdint.hpp>
7 
8 namespace osl
9 {
10  using boost::uint8_t;
11  using boost::int8_t;
12 
13  using boost::uint16_t;
14  using boost::int16_t;
15 
16  using boost::uint32_t;
17  using boost::int32_t;
18 
19  using boost::uint64_t;
20  using boost::int64_t;
21 }
22 
23 #endif /* OSL_CSTDINT_H */
24 // ;;; Local Variables:
25 // ;;; mode:c++
26 // ;;; c-basic-offset:2
27 // ;;; End: