mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-28 03:09:24 +08:00
15 lines
299 B
C++
15 lines
299 B
C++
|
|
//
|
||
|
|
// Created by Kenneth Balslev on 15/08/2021.
|
||
|
|
//
|
||
|
|
|
||
|
|
#ifndef OPENXLSX_XLCONSTANTS_HPP
|
||
|
|
#define OPENXLSX_XLCONSTANTS_HPP
|
||
|
|
|
||
|
|
namespace OpenXLSX
|
||
|
|
{
|
||
|
|
inline const uint16_t MAX_COLS = 16'384;
|
||
|
|
inline const uint32_t MAX_ROWS = 1'048'576;
|
||
|
|
} // namespace OpenXLSX
|
||
|
|
|
||
|
|
#endif // OPENXLSX_XLCONSTANTS_HPP
|