forked from artyom-beilis/cppcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcstdint.h
More file actions
24 lines (21 loc) · 801 Bytes
/
Copy pathcstdint.h
File metadata and controls
24 lines (21 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <[email protected]>
//
// See accompanying file COPYING.TXT file for licensing details.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef CPPCMS_CSTDINT_H
#define CPPCMS_CSTDINT_H
#include <booster/cstdint.h>
namespace cppcms {
using booster::int8_t;
using booster::uint8_t;
using booster::uint16_t;
using booster::int16_t;
using booster::uint32_t;
using booster::int32_t;
using booster::uint64_t;
using booster::int64_t;
}
#endif // CPPCMS_CSTDINT_H