Boost Program Options ライブラリのチュートリアルのオプションの詳細セクションに従おうとしていますが、次のエラーが表示されます。
error C2679: "binary '<<' : no operator found which takes a right-hand operand
of type 'const std::vector<_Ty>'" (or there is no acceptable conversion)
私のコードは以下です。ヘッダーを含める必要があると思いますが、どれがわかりません。
#include <boost/program_options.hpp>
#include <iostream>
#include <vector>
#include <string>
using std::cout;
using std::endl;
using std::vector;
using std::string;
namespace po = boost::program_options;
int options_description(int ac, char* av[])
{
int opt;
po::options_description desc("Allowed options");
desc.add_options()
("help", "produce help message")
("optimization", po::value<int>(&opt)->default_value(10),
"optimization level")
("include-path,I", po::value< vector<string> >(), "include path")
("input-file", po::value< vector<string> >(), "input file")
;
po::positional_options_description p;
p.add("input-file", -1);
po::variables_map vm;
po::store(po::command_line_parser(ac, av).
options(desc).positional(p).run(), vm);
po::notify(vm);
if (vm.count("include-path"))
{
cout << "Include paths are: "
<< vm["include-path"].as< vector<string> >() << "\n"; // Error
}
if (vm.count("input-file"))
{
cout << "Input files are: "
<< vm["input-file"].as< vector<string> >() << "\n"; // Error
}
cout << "Optimization level is " << opt << "\n";
return 0;
}
int main(int argc, char *argv[])
{
return options_description(argc, argv);
}