myx update

This commit is contained in:
2022-10-09 06:05:59 +03:00
parent 94988dfe57
commit 1f4d587a21
38 changed files with 994 additions and 82 deletions

View File

@@ -0,0 +1,27 @@
/**
* \file Класс Processor
*/
#ifndef PROCESSOR_HPP_
#define PROCESSOR_HPP_
#pragma once
#include <QObject>
#include <QDebug>
/**
* \brief Класс Processor
*/
class Processor : public QObject
{
Q_OBJECT
public:
/**
* \brief Слот, печатающий сообщение
*/
Q_SLOT void process() { qCritical() << "about to close"; }
};
#endif // ifndef PROCESSOR_HPP_
// EOF processor.hpp