ref #58 Fixing: added copyright_Fixer_EXPORT.

This commit is contained in:
IgorekLoschinin 2021-05-15 00:10:46 +03:00
parent 2624cc2a36
commit 67d525f32e
2 changed files with 5 additions and 5 deletions

View File

@ -5,12 +5,12 @@
//# of this license document, but changing it is not allowed.
//#
#include "ifilehandler.h"
#include "ifilemanager.h"
namespace CopyrighFixer {
IFileHandler::~IFileHandler() {
IFileManager::~IFileManager() {
}

View File

@ -17,7 +17,7 @@ namespace CopyrighFixer {
/**
* @brief The Extensinon enum File extensions for signature.
*/
enum Extensinon {
enum CopyrighFixer_EXPORT Extensinon {
CPP,
HPP,
H,
@ -31,7 +31,7 @@ enum Extensinon {
/**
* @brief The IFileHandler class This is class that handles the source files that need to be signed.
*/
class IFileHandler {
class CopyrighFixer_EXPORT IFileManager {
public:
/**
@ -56,7 +56,7 @@ public:
*/
virtual Extensinon supportsExtensions() = 0;
virtual ~IFileHandler();
virtual ~IFileManager();
};
};