12 lines
262 B
C++
12 lines
262 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
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";
|
|
}; |