From cecef1dad14704acb93c500f9bc44ec28a18ebe1 Mon Sep 17 00:00:00 2001 From: IgorekLoschinin Date: Sun, 16 May 2021 12:28:43 +0300 Subject: [PATCH] ref #68 Fixing bug: Move comments. --- .../CopyrighFixer/ifilemanager.h | 31 ++++++++++++++----- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/src/CopyrighFixer/CopyrighFixer/ifilemanager.h b/src/CopyrighFixer/CopyrighFixer/ifilemanager.h index e169a30..a9a7efb 100644 --- a/src/CopyrighFixer/CopyrighFixer/ifilemanager.h +++ b/src/CopyrighFixer/CopyrighFixer/ifilemanager.h @@ -16,23 +16,38 @@ namespace CopyrighFixer { /** * @brief The Extensinon enum File extensions for signature. - * @param CPP The CPP file is a source code file written in C++. - * @param HPP The header file containing the development source code written in C ++. - * @param H The used for the header of the file, which is referenced by the source code of the document written in C ++. - * @param CC The CC file is a source code file written in C++. - * @param QML The Contains JavaScript-based QML source code encoded in UTF-8 format. - * @param PRO The PRO files include references to project libraries, assets and source code files, and other files such as application resources. - * @param TXT The source code is written in the txt file in CMake language. - * @param Py The py file contains the source code in python. + * @param + * @param + * @param H + * @param CC + * @param QML + * @param PRO + * @param TXT + * @param Py */ enum Extensinon { + /// CPP The CPP file is a source code file written in C++. CPP, + + /// HPP The header file containing the development source code written in C ++. HPP, + + /// The used for the header of the file, which is referenced by the source code of the document written in C ++. H, + + /// The CC file is a source code file written in C++. CC, + + /// The Contains JavaScript-based QML source code encoded in UTF-8 format. QML, + + /// The PRO files include references to project libraries, assets and source code files, and other files such as application resources. PRO, + + /// The source code is written in the TXT file in CMake language. TXT, + + /// The PY file contains the source code in python. PY, };