0.4.0
This commit is contained in:
27
include/myx-example-features/processor.hpp
Normal file
27
include/myx-example-features/processor.hpp
Normal 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
|
Reference in New Issue
Block a user