#pragma once #include template class Exist { public: bool operator()(T x); private: std::vector seen_; }; #include "exist.hxx"