14 lines
214 B
C++
14 lines
214 B
C++
/** @file DFloat.hpp
|
|
*
|
|
* @author Roland Conybeare, Dec 2025
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
namespace xo {
|
|
namespace scm {
|
|
using DFloat = double;
|
|
} /*nmaespace obj*/
|
|
} /*namespace xo*/
|
|
|
|
/* end DFloat.hpp */
|