Initial commit for WordsSorting
This commit is contained in:
12
WordsSorting/Options.h
Normal file
12
WordsSorting/Options.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#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";
|
||||
};
|
||||
Reference in New Issue
Block a user