C++ template pointers vs. objects
C++ template pointers vs. objects
- Subject: C++ template pointers vs. objects
- From: Wesley Smith <email@hidden>
- Date: Wed, 25 May 2005 19:52:38 -0700
Hi,
What is best practice in C++ when using templates and large
objects...is it to declate a vector of pointers to an object or a
vector of objects as in:
std::vector<largeObject *> objvect;
or
std::vector<largeObject> objvect;
thanks,
wes
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden