/* * SPDX-FileCopyrightText: 2009 Petri Damstén * SPDX-FileCopyrightText: 2014 John Layt * * SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef CURRENCY_P_H #define CURRENCY_P_H #include "unitcategory_p.h" #include namespace KUnitConversion { namespace Currency { UnitCategory makeCategory(); /** * @brief Provides time of last conversion table update for usage in tests * * If no conversion table is available the QDateTime object is a null datetime. * * @internal exported for unit tests only */ KUNITCONVERSION_EXPORT QDateTime lastConversionTableUpdate(); }; } #endif