/
zOMGdev
/
cppcms
Обзор
Документация
Войти
/
zOMGdev
/
cppcms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.0.5
cppcms/cstdint.h
23 строки
801 B
Artyom Beilis
- Update copyright notice,
03 янв 2012, 17:58
03 янв 2012, 17:58
068d3f9
Код
Авторство
О чём код?
/////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com> // // 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