Advertisement
grumblesnake

graph_drill.cpp

May 17th, 2018
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1.  
  2. #include "fltk.h"
  3. #include "Graph.h"
  4. #include "GUI.h"
  5. #include "Point.h"
  6. #include "Simple_window.h"
  7. #include "Window.h"
  8.  
  9.  
  10.  
  11. int main()
  12. {
  13. using namespace Graph_lib;
  14.  
  15. Point tl(150, 150);
  16. Simple_window win(tl, 600, 400, "My window");
  17. win.wait_for_button();
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement