#pragma once #include using namespace std; // List of hardcoded options strings struct Options { const std::string kHelp = "help"; const std::string kReverse = "reverse"; const std::string kUnique = "unique"; const std::string kInput = "input"; };