1 | /* |
---|---|
2 | * SPDX-FileCopyrightText: 2010 Petri Damstén <damu@iki.fi> |
3 | * SPDX-FileCopyrightText: 2014 John Layt <jlayt@kde.org> |
4 | * SPDX-FileCopyrightText: 2014 Garret Wassermann <gwasser@gmail.com> |
5 | * |
6 | * SPDX-License-Identifier: LGPL-2.0-or-later |
7 | */ |
8 | |
9 | #ifndef VOLTAGE_P_H |
10 | #define VOLTAGE_P_H |
11 | |
12 | #include "unitcategory_p.h" |
13 | |
14 | namespace KUnitConversion |
15 | { |
16 | namespace Voltage |
17 | { |
18 | UnitCategory makeCategory(); |
19 | }; |
20 | |
21 | } // KUnitConversion namespace |
22 | |
23 | #endif |
24 |