4
0
mirror of https://github.com/QuasarApp/CopyrightFixer.git synced 2025-05-10 08:29:44 +00:00

ref Added main class.

This commit is contained in:
IgorekLoschinin 2021-04-22 22:30:03 +03:00
parent 72eba9113f
commit a53c88539e
3 changed files with 58 additions and 2 deletions
src/CopyrighFixer/CopyrighFixer

@ -16,8 +16,7 @@ namespace CopyrighFixer{
/**
* @brief The Owner class for collect information about owner.
*/
class CopyrighFixer_EXPORT Owner
{
class CopyrighFixer_EXPORT Owner {
public:
Owner();
/**

@ -0,0 +1,23 @@
//#
//# Copyright (C) 2021-2021 QuasarApp.
//# Distributed under the lgplv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
#include "config.h"
#include "worker.h"
#include <quasarapp.h>
namespace CopyrighFixer {
Worker::Worker() {
}
bool Worker::runProcessing() {
return 1;
}
};

@ -0,0 +1,34 @@
//#
//# Copyright (C) 2021-2021 QuasarApp.
//# Distributed under the lgplv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
#ifndef WORKER_H
#define WORKER_H
#include "CopyrighFixer_global.h"
namespace CopyrighFixer {
/**
* @brief The Worker class that will be control all work process.
*/
class CopyrighFixer_EXPORT Worker {
public:
Worker();
/**
* @brief runProcessing It is main method for control of all parsing process.
* @return
*/
bool runProcessing();
};
}
#endif // WORKER_H