#pragma once #define EXERCISM_RUN_ALL_TESTS #include namespace prime_factors { typedef std::vector factors_t; factors_t of(int number); }