Advertisement
tattersail

C16_main.cpp

Apr 13th, 2019
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include"../../lib_files/Lines_window.h"
  2.  
  3. int main()
  4. try {
  5. Graph_lib::Lines_window win{ Graph_lib::Point{100,100},600,400,"lines" };
  6. return Graph_lib::gui_main();
  7. }
  8. catch (exception& e) {
  9. cerr << "exception: " << e.what() << '\n';
  10. return 1;
  11. }
  12. catch (...) {
  13. cerr << "Some exception\n";
  14. return 2;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement