cstdint.h
Go to the documentation of this file.
00001 /* cstdint.h
00002  */
00003 #ifndef OSL_CSTDINT_H
00004 #define OSL_CSTDINT_H
00005 
00006 #include <boost/cstdint.hpp>
00007 
00008 namespace osl
00009 {
00010   using boost::uint8_t;
00011   using boost::int8_t;
00012   
00013   using boost::uint16_t;
00014   using boost::int16_t;
00015 
00016   using boost::uint32_t;
00017   using boost::int32_t;
00018 
00019   using boost::uint64_t;
00020   using boost::int64_t;
00021 }
00022 
00023 #endif /* OSL_CSTDINT_H */
00024 // ;;; Local Variables:
00025 // ;;; mode:c++
00026 // ;;; c-basic-offset:2
00027 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines