CppCMS
cstdint.h
1 //
3 // Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com>
4 //
5 // See accompanying file COPYING.TXT file for licensing details.
6 //
8 #ifndef CPPCMS_CSTDINT_H
9 #define CPPCMS_CSTDINT_H
10 #include <booster/cstdint.h>
11 
12 namespace cppcms {
13  using booster::int8_t;
14  using booster::uint8_t;
15  using booster::uint16_t;
16  using booster::int16_t;
17  using booster::uint32_t;
18  using booster::int32_t;
19  using booster::uint64_t;
20  using booster::int64_t;
21 }
22 
23 #endif // CPPCMS_CSTDINT_H
24 
This is the namespace where all CppCMS functionality is placed.
Definition: application.h:19