Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include"../../lib_files/Lines_window.h"
- int main()
- try {
- Graph_lib::Lines_window win{ Graph_lib::Point{100,100},600,400,"lines" };
- return Graph_lib::gui_main();
- }
- catch (exception& e) {
- cerr << "exception: " << e.what() << '\n';
- return 1;
- }
- catch (...) {
- cerr << "Some exception\n";
- return 2;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement