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"
19using namespace std;
20
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
void execute()
Executes the full duplication analysis pipeline.
DuplicationFinderTool(string base_path_, double similarity_)
Constructs the duplication finder tool.
Code duplication results parser.