Dec 29, 2001 #1 revit Programmer Joined Oct 27, 2001 Messages 36 Location 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 Joined Dec 5, 2001 Messages 226 Location 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