16 lines
303 B
C++
16 lines
303 B
C++
// License: AGPLv3 or later. https://www.gnu.org/licenses/licenses.html
|
|
|
|
#include <iostream>
|
|
|
|
#include "auxiliary.h"
|
|
#include "cfc.h"
|
|
|
|
using namespace std;
|
|
|
|
int main (const int argc, const char* const argv[])
|
|
{
|
|
processArguments progArgs(argc, argv);
|
|
driver runProgram(progArgs);
|
|
return 0;
|
|
}
|