/* * main.cpp * * Created on: 4 нояб. 2021 г. * Author: alexander */ #include "Control.hpp" #include "Application.hpp" #include "OpenCommand.hpp" #include "PasteCommand.hpp" int main() { Control control; Application app; OpenCommand openCommand(&app); control.setCommand(&openCommand); control.run(); return 0; }