File indexing completed on 2024-11-10 04:40:46
0001 /* 0002 SPDX-FileCopyrightText: 2017 Daniel Vrátil <dvratil@kde.og> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 class PropertyNode; 0010 0011 #include <QList> 0012 0013 namespace CppHelper 0014 { 0015 void sortMembers(QList<PropertyNode const *> &props); 0016 0017 void sortMembersForSerialization(QList<PropertyNode const *> &props); 0018 0019 } // namespace CppHelper