/* * File: main.cpp * Author: SET - nmset@yandex.com * License : GPL v2 * Copyright SET - © 2019 * * Created on 7 octobre 2019, 21:06 */ #include #include "K7Main.h" #include #include #include using namespace std; using namespace Wt; unique_ptr createApplication(const WEnvironment& env) { unique_ptr app = cpp14::make_unique(env); app->Create(); return (app); } int main(int argc, char** argv) { GpgME::initializeLibrary(); return WRun(argc, argv, &createApplication); }