#ifndef __TEST_MINMAX_HPP__ #define __TEST_MINMAX_HPP__ namespace minmax { class test_minmax { void play(); template <typename Game> int select_move(Game& game); public: test_minmax(); }; } #endif