After playing a little bit with samples from SDK and a few simple programs of my own, I started porting one or other piece of code.
I need some includes, but I am not sure where and how to get them.
In Windows I would use (well, among others) :
How do we include vectors? What about other STL and std c++ functions, classes and utils?#include <math.h> <- no problem with this one
#include <sstream>
#include <string>
#include <vector>
#include <limits>
#include <cassert>
#include <iomanip>
How do we add the files from this directory (see below) ?
c:\cygwin\usr\local\pspdev\include\c++\4.0.2\
I searched the forums, but I thought I'd ask nevertheless to be sure I understand it well.