mirror of
https://github.com/QuasarApp/CopyrightFixer.git
synced 2025-05-10 08:29:44 +00:00
ref #29 Added main class.
This commit is contained in:
parent
72eba9113f
commit
a53c88539e
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();
|
||||
/**
|
||||
|
23
src/CopyrighFixer/CopyrighFixer/worker.cpp
Normal file
23
src/CopyrighFixer/CopyrighFixer/worker.cpp
Normal file
@ -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;
|
||||
}
|
||||
|
||||
};
|
34
src/CopyrighFixer/CopyrighFixer/worker.h
Normal file
34
src/CopyrighFixer/CopyrighFixer/worker.h
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user