我想使用liblas处理一些数据,所以我在我的ubuntu 13.04上安装了/ usr / share / include,自动路径。
我还有一个关于code :: blocks的项目来使用这个库。
这是主程序的摘录:
#include <iostream>
#include <string>
#include <fstream>
#include <cstdlib>
#include <sstream>
#include <liblas.hpp>
using namespace std;
int main()
{
std::ifstream ifs;
ifs.open("myfile.LAS", std::ios::in | std::ios::binary);
liblas::ReaderFactory f;
liblas::Reader reader = f.CreateWithStream(ifs);
liblas::Header const& header = reader.GetHeader();
std::cout << "Compressed: " << (header.Compressed() == true) ? "true":"false";
std::cout << "Signature: " << header.GetFileSignature() << '\n';
std::cout << "Points count: " << header.GetPointRecordsCount() << '\n';
return 0;
}
当我想编译它时,我收到错误“liblas / version.hpp:没有这样的文件或目录” Code :: Blocks打开liblas.hpp并显示错误: $ #include liblas / version.hpp $
(在&lt;&gt;下)
但实际上,与liblas.hpp在同一文件夹中的文件名为version.hpp
怎么了?