Dec 29, 2001 #1 revit Programmer Oct 27, 2001 36 IL Is it possible to declare a vector (from stl library) that every element in it is a vector too: typedef vector <int> Family; vector<Family> FamiliesVector; thanks.
Is it possible to declare a vector (from stl library) that every element in it is a vector too: typedef vector <int> Family; vector<Family> FamiliesVector; thanks.
Jan 2, 2002 #2 michaelkrauklis Programmer Dec 5, 2001 226 US Yes, you should be able to do that, or you can try: Code: vector<vector<int>> FamiliesVector; Should give you the same result. Good Luck. MYenigmaSELF myenigmaself@yahoo.com http://myenigmaself.gaiden.com Upvote 0 Downvote
Yes, you should be able to do that, or you can try: Code: vector<vector<int>> FamiliesVector; Should give you the same result. Good Luck. MYenigmaSELF myenigmaself@yahoo.com http://myenigmaself.gaiden.com