I have a class with a container (containing pointer) as a member:
MyClass{
private:
std::vector<MyObject*> _VecMyObjs;
public:
const std::vector<MyObject* const> GetVecMyObj();
}
Now I try to implement GetVecMyObj(). Here is what I came up with...
const vector<MyObject *const> ACI_CALL MyClass::GetVecMyObjs()
{
const vector<MyObject *const> VecMyObjs;
VecMyObjs.assign( _VecMyObjs.begin(), _VecMyObjs.end());
return VecMyObjs;
}
But of course the compiler is warning me, that I use the assign-function on a const-Object. Is there a better way to do this? I mean, I don't want VecMyObjs to change VecMyObj outside of the class, of course. How can I achieve that without a compiler warning?
EDIT: Okay. Thank you everybody. It's now like this:
const vector<MyObject *const> ACI_CALL MyClass::GetVecMyObjs()
{
const vector<MyObject *const> VecMyObjs;
VecMyObjs.assign( _VecMyObjs.begin(), _VecMyObjs.end());
return VecMyObjs;
}
But, I can't get around the assign-function, right? E.g. casting the "original" doesn't work, if I want "everything" to be constant.
std::vector< MyObject* const >you can't have one as the template argument to avectormust be an assignable type andconstobjects are not (generally) assignable. – Charles Bailey Dec 15 '10 at 12:40