How can I use Stroustrup's graphics libraries (Simple_window.h, Graph.h, …) in Netbeans 7.3 in Ubuntu 12.10?
问题 everyone. I am learning Bjarne Stroustrup's "Programming principle and practice using C++" book. I'm working with Netbeans 7.3 in Ubuntu 12.10. I want to build and run this simple graphics program in this book's chapter 12. The program is like this: #include "Simple_window.h" // get access to our window library #include "Graph.h" // get access to our graphics library facilities int main() { using namespace Graph_lib; // our graphics facilities are in Graph_lib Point tl(100,100); // to become