#ifndef _SOL_H_ #define _SOL_H_ #include #include "Problem" namespace S { class Solution { public: Solution(std::vector solution); int size(); bool operator[] (int pos); operator std::vector(); protected: std::vector solution; }; } #endif