16 lines
246 B
C++
16 lines
246 B
C++
/** @file DInteger.hpp
|
|
*
|
|
* @author Roland Conybeare, Dec 2025
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace xo {
|
|
namespace scm {
|
|
using DInteger = std::int64_t;
|
|
} /*nmaespace obj*/
|
|
} /*namespace xo*/
|
|
|
|
/* end DInteger.hpp */
|