我无法让我的编译器(g ++)包含来自boost C ++库的某些头文件,这些头文件位于bin目录的子目录中。 具体来说,我正在尝试包含理性类头文件 rational.hpp 。首先,我尝试在我的makefile中包含这个脚本代码:
intRational.o: intRational.h
g++ -I /home/.../boost_1_58_0 -c intRational.h
然而,它给了我这个错误:
In file included from testRational.cpp:11:0:
intRational.h:17:1: error: expected class-name before ‘{’ token
{
^
make: *** [testRational.o] Error 1
这是intRational.h:
#ifndef _INTRATIONAL_H
#define _INTRATIONAL_H
#include<boost/rational.hpp>
//Derived class
class intRational: public rational
{
bool simplify;
public:
void setSimple()
{
simplify=true;
};
void setNoSimplify()
{
simplify=false;
};
bool getFlag()
{
return simplify;
};
};
#endif // _INTRATIONAL_H
接下来我换了
#include<boost/rational.hpp>
使用完整目录
#include</home/.../boost_1_58_0/boost/rational.hpp>
(...代表显示我身份的目录的一部分)
这解决了第一个问题,但现在我遇到了一个新错误:
In file included from intRational.h:14:0,
from testRational.cpp:11:
/home/.../boost_1_58_0/boost/rational.hpp:82:78: fatal error: boost/integer/common_factor_rt.hpp: No such file or directory
#include <boost/integer/common_factor_rt.hpp> // for boost::integer::gcd, lcm
此错误源自boost库文件rational.hpp。我不想将完整目录放在 #include 中,因为我必须为 #include 执行此操作,该文件位于<例如,strong> common_factor_rt.hpp ,每个头文件都关闭,这是很多工作。我不应该这样做,因为它有点破坏了使用库的目的。
答案 0 :(得分:3)
看起来你想要一个整数理性:
rational<>
boost
)#include <boost/rational.hpp>
// Derived class
class intRational : public boost::rational<int> {
bool simplify;
public:
void setSimple() { simplify = true; } ;
void setNoSimplify() { simplify = false; } ;
bool getFlag() { return simplify; } ;
};