In Java if you wanted all the classes in a namespace you could just do this:
import com.bobdylan.*;
Is there anyway I can get a result similar to:
import boost.*;
(except in C++)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not automatically. You can write a single header file that #includes all the other headers you are interested in, and then just #include that, but that’s it – C++ has no “import” feature like java.