我使用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>
}
}
Parmaeters.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&)'
我尝试将运算符&gt;&gt;在主要并得到相同的错误。
我现在花了几天时间在这里,而不是从这里开始。如果有人有任何想法,我们将不胜感激。
答案 0 :(得分:2)
通过你的朋友声明,你宣布
namespace SA {
istream& operator>> (istream &in, Parameters::Algorithm &algorithm);
}
您在全局命名空间中的实现:
istream& operator>> (istream &in, Parameters::Algorithm &algorithm);
在namespace SA
内移动您的实施。
为您提供信息:
namespace SA { void foo(); }
using namespace SA;
void foo() {} // implement ::foo and not SA::foo()
你必须使用
namespace SA { void foo() {} }
或
void SA::foo() {}