I'm developing and app for Bada OS and i need use vectors and other standar structures from stl. But when i write:
#include <vector>
The Bada sdk throws me an error:
unresolved inclusion: vector
I'm looking for a solution on Internet and the solution always is include the stl's path on the configuration of the project (Bada IDE are derivated from Eclipse).
But i don't know where is that path, i tried to include all the path that i found (in minGW, bada directory, etc) and the compiler doesn't run if i include it.
Please help me! (sorry about my poor english)
<vector>is part of the C++ standard library. If you can get to other headers from the standard library, then you don't need to mess with the path.Some embedded compilers might not do templates, so
<vector>wouldn't be part of their library. If that's the case, you're out of luck.