mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-28 03:09:24 +08:00
16 lines
311 B
C++
16 lines
311 B
C++
//
|
|
// Created by Kenneth Balslev on 22/08/2020.
|
|
//
|
|
|
|
#ifndef OPENXLSX_XLITERATOR_HPP
|
|
#define OPENXLSX_XLITERATOR_HPP
|
|
|
|
namespace OpenXLSX
|
|
{
|
|
enum class XLIteratorDirection { Forward, Reverse };
|
|
enum class XLIteratorLocation { Begin, End };
|
|
|
|
} // namespace OpenXLSX
|
|
|
|
#endif // OPENXLSX_XLITERATOR_HPP
|