I have experience in Java, but not in C++ and unfortunately I have to write small application in C++ for Tizen. The problem is I have to store data as follows:
- data should be stored in one object
- ideal object would be java ArrayList (or LinkedList) of ArrayList of Points
How can I achieve that in C++? Could you propose any sample declaration, definition and get(), add() examples? Is the following a good way to do that:
std::vector<std::vector<Tizen::Graphics::Point> > __strokes;