File indexing completed on 2024-04-21 07:40:25

0001 /*
0002     This file is part of the KDE Frameworks
0003 
0004     SPDX-FileCopyrightText: 2022 Mirco Miranda
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 #ifndef KMEMORYINFOTEST_H
0009 #define KMEMORYINFOTEST_H
0010 
0011 #include <QObject>
0012 
0013 /**
0014  * @brief The KMemoryInfoTest class
0015  */
0016 class KMemoryInfoTest : public QObject
0017 {
0018     Q_OBJECT
0019 public:
0020     KMemoryInfoTest(QObject *parent = nullptr);
0021 
0022 private Q_SLOTS:
0023     void isNull();
0024 
0025     void operators();
0026 };
0027 
0028 #endif // KMEMORYINFOTEST_H