Arkanjo
0.1
A tool for find code duplicated functions in codebases
Loading...
Searching...
No Matches
duplication_finder_tool.hpp
Go to the documentation of this file.
1
13
14
#ifndef DUPLICATION_FINDER_TOOL_HPP
15
#define DUPLICATION_FINDER_TOOL_HPP
16
17
#include <bits/stdc++.h>
18
#include "
parser.hpp
"
19
using namespace
std;
20
28
class
DuplicationFinderTool
{
29
private
:
30
string
SAVING_MESSAGE =
"Saving results..."
;
31
32
string
base_path;
33
double
similarity;
34
35
public
:
41
DuplicationFinderTool
(
string
base_path_,
double
similarity_);
42
49
void
execute
();
50
};
51
52
#endif
DuplicationFinderTool::execute
void execute()
Executes the full duplication analysis pipeline.
Definition
duplication_finder_tool.cpp:8
DuplicationFinderTool::DuplicationFinderTool
DuplicationFinderTool(string base_path_, double similarity_)
Constructs the duplication finder tool.
Definition
duplication_finder_tool.cpp:3
parser.hpp
Code duplication results parser.
arkanjo
pre
duplication_finder_tool.hpp
Generated by
1.13.2