C++ (Qt)struct Node{ Node *next; // можно и previous добавить по желанию CData *data;}; struct LinkedList{ Node *head, *current;};
C++ (Qt)void DoSomething( const std::vector <CData *> & data );