/* * Bundle.h * */ #ifndef TOOLS_BUNDLE_H_ #define TOOLS_BUNDLE_H_ #include using namespace std; template class Bundle : public vector { public: T& mine; Bundle(Player& P) : vector(P.num_players()), mine(this->at(P.my_num())) { } }; #endif /* TOOLS_BUNDLE_H_ */