mirror of
https://github.com/sendyne/cppreg.git
synced 2025-05-09 23:24:05 +00:00
* Revise and simplify most enable_if statements in the project. * Update code style in all files. * Update copyright year. * Add a dedicated Memory.h header with the memory device implementation. * Update documentation. * CMake cleanup.
19 lines
363 B
C++
19 lines
363 B
C++
//! Project-wide includes header.
|
|
/**
|
|
* @file cppreg_Defines.h
|
|
* @author Nicolas Clauvelin (nclauvelin@sendyne.com)
|
|
* @copyright Copyright 2010-2019 Sendyne Corp. All rights reserved.
|
|
*/
|
|
|
|
|
|
#ifndef CPPREG_CPPREG_INCLUDES_H
|
|
#define CPPREG_CPPREG_INCLUDES_H
|
|
|
|
|
|
#include <cstdint>
|
|
#include <limits>
|
|
#include <tuple>
|
|
|
|
|
|
#endif // CPPREG_CPPREG_INCLUDES_H
|