#pragma once #include #include #include "specification.h" class Validate { public: Validate(); bool isValid(std::string arg); void addSpecification(std::unique_ptr specPtr); void setSelectedSpecification(std::string countryCode); std::map> specifications; std::unique_ptr selectedSpec; };