I have a class that adapts std::vector to model a container of domain-specific objects. I want to expose most of the std::vector API to the user, so that they may use famili
It is easier to do:
typedef std::vector MyContainer;