Branch data Line data Source code
1 : : /**
2 : : * @file JCmeasure.cpp
3 : : * @author Kai KRETSCHMANN
4 : : * @copyright SPDX-License-Identifier: MIT
5 : : * @brief Main method to start application.
6 : : **/
7 : : #include <cstdlib>
8 : : #include <iostream>
9 : : #include <memory>
10 : :
11 : : #include "spdlog/spdlog.h"
12 : :
13 : : #include "MeasureEntropy.h"
14 : : #include "JCmain.h"
15 : :
16 : : using namespace std;
17 : : using namespace jastacry;
18 : :
19 : : /**
20 : : * @brief Main method for external linkage.
21 : : *
22 : : * @param argc [in] - Number of parameters, we expect one means == 2
23 : : * @param argv [in] - Array of arguments, first one will be file name.
24 : : *
25 : : */
26 : 0 : int main(int argc, const char **argv) {
27 : 0 : return JCmain::jmain(argc, argv);
28 : 0 : }
29 : :
|