practice_greedyTextJustific.../cpp_impl/src/argparse.hpp
2021-05-10 14:32:47 +09:00

17 lines
416 B
C++

#ifndef GREEDY_TEXT_JUSTIFICATION_ARG_PARSE_HPP
#define GREEDY_TEXT_JUSTIFICATION_ARG_PARSE_HPP
#include <string>
#include <unordered_map>
#include <vector>
namespace ArgParse {
std::unordered_map<std::string, std::string> parseArgs(
int argc,
char **argv,
const std::vector<std::string> &simpleArgs,
const std::vector<std::string> &pairedArgs);
} // namespace ArgParse
#endif