When I say non-standard libraries, I mean things like Boost, libCurl and everything else that can make this much easier than standard C ++. The reason for this is that I am writing an application as part of a term paper (the class is dedicated to C ++), and I need to use only standard libraries and functions.
I want to download an RSS file using a URL that will be supplied by the user (I am building a rudimentary RSS client), and the biggest problem I am facing is that I am not sure how to get the file down. Once I get through this bit, parsing it for xml tags and displaying the content will be relatively simple. I looked around and I found solutions that say they use non-standard libraries, usually libCurl. If someone could just give me a quick heads-up that I should look at this, then I would be grateful.
Also, if you think you are helping me cheat, you are not. The task is to create an application of our choice, and we evaluate our use of various functions of the language (it should contain so many classes, use these types of variables, etc.).
source
share