testfan.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * <one line to give the program's name and a brief idea of what it does.>
  3. * Copyright 2016 Malte Veerman <malte.veerman@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License or (at your option) version 3 or any later version
  9. * accepted by the membership of KDE e.V. (or its successor approved
  10. * by the membership of KDE e.V.), which shall act as a proxy
  11. * defined in Section 14 of version 3 of the license.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #ifndef TESTFAN_H
  23. #define TESTFAN_H
  24. #include "fan.h"
  25. #include <QtCore/QTextStream>
  26. using namespace Fancontrol;
  27. class TestFan : public Fan
  28. {
  29. Q_OBJECT
  30. public:
  31. explicit TestFan(QString *rpmString, uint index = 0, Hwmon *parent = Q_NULLPTR);
  32. };
  33. #endif // TESTFAN_H