FlowArithmeticCalculator 1.0.0
Flow Arithmetic Calculator
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1#include "main.h"
2
7int main() {
8 spdlog::set_level(SET_LOG_ACTIVE_LEVEL);
9
10 try {
11 auto window =
13 SkCanvas>::MakeFullscreen("Flow Arithmetic Calculator");
14 window.run();
15 } catch (const std::exception& e) {
16 return -1;
17 }
18
19 return 0;
20}
Class responsible for rendering the GUI using Skia and GLFW.
Class responsible for managing the GLFW main window, any Qt dialogs / modals and their lifecycle.
int main()
Main application entry point.
Definition main.cpp:7