#ifndef AUTO_AIM__VOTER_HPP #define AUTO_AIM__VOTER_HPP #include #include "armor.hpp" namespace auto_aim { class Voter { public: Voter(); void vote(const Color color, const ArmorName name, const ArmorType type); std::size_t count(const Color color, const ArmorName name, const ArmorType type); private: std::vector count_; std::size_t index(const Color color, const ArmorName name, const ArmorType type) const; }; } // namespace auto_aim #endif