【发布时间】:2014-06-19 15:12:48
【问题描述】:
我正在使用 boost::program_options 为我的程序解析命令行,但在尝试将值读入同样位于命名空间中的类中的公共枚举时遇到了麻烦。
具体说明:
Boost 1.44.0
g++ 4.4.7
我尝试按照Boost Custom Validator for Enum 中说明的流程进行操作,但它不适合我。
Parameters.h
#include <istream>
namespace SA
{
class Parameters
{
public:
enum Algorithm
{
ALGORITHM_1,
ALGORITHM_2,
ALGORITHM_3,
ALGORITHM_4
};
friend istream& operator>> (istream &in, Parameters::Algorithm &algorithm);
Algorithm mAlgorithm;
<More Parameters>
}
}
参数.cpp
#include <boost/algorithm/string.hpp>
using namespace SA;
istream& operator>> (istream &in, Parameters::Algorithm &algorithm)
{
string token;
in >> token;
boost::to_upper (token);
if (token == "ALGORITHM_1")
{
algorithm = ALGORITHM_1;
}
else if (token == "ALGORITHM_2")
{
algorithm = ALGORITHM_2;
}
else if (token == "ALGORITHM_3")
{
algorithm = ALGORITHM_3;
}
else if (token == "ALGORITHM_4")
{
algorithm = ALGORITHM_4;
}
else
{
throw boost::program_options::validation_error ("Invalid Algorithm");
}
return in;
}
main.cpp
#include <boost/program_options.hpp>
using namespace SA;
int main (int argc, char **argv)
{
po::options_description options ("Test: [options] <data file>\n Where options are:");
options.add_options ()
("algorithm", po::value<Parameters::Algorithm>(&Parameters::mAlgorithm)->default_value (Parameters::ALGORITHM_3), "Algorithm");
<More options>
<...>
}
编译时出现以下错误:
main.o: In function 'bool boost::detail::lexical_stream_limited_src<char, std::basic_streambuf<char, std::char_traits<char> >, std::char_traits<char> >::operator>><SA::Parameters::Algorithm>(SA::Parameters::Algorithm&)':
/usr/include/boost/lexical_cast.hpp:785: undefined reference to 'SA::operator>>(std::basic_istream<car, std:char_traits<char> >&, SA::Parameters::Algorithm&)'
我尝试将 operator>> 放在 main 中,得到了同样的错误。
我现在已经在这上面花了几天时间,但我不知道该去哪里。如果有人有任何想法,将不胜感激。
【问题讨论】:
-
尝试在
namespace SA中定义你的operator>>。