0

我已经下载了紫罗兰的主干存储库,但我得到了错误Type 'boost::filesystem::path' could not be resolved。我已经安装了 boost 库,boost/filesystem.hpp也包括在内。

我该如何解决这个问题?

系统:
- linux mint 13 x64
- eclipse indigo
- 如果需要,请询问更多信息。

代码示例:

#ifndef FILEUTILITY_H_
#define FILEUTILITY_H_

#include <vector>
#include <sys/stat.h>
#include <cstdlib>
#include <string>

#include <boost/filesystem.hpp>



class FileUtility {
private:
    boost::filesystem::path m_appPath, m_resPath, m_usrPath;
public:
    enum PathType {
        common = 0, image, anima, sound, music, monsters, weapon, user
    };
    FileUtility(char *argPath);
    static void truncateFullPathToDir(char *path);
    void traceResPath();
    void setFullResPath(std::string path);
    boost::filesystem::path getFullPath(PathType type, std::string resource) const;
    std::vector<std::string> getFilesFromDir(boost::filesystem::path dir);
    unsigned int getFilesCountFromDir(boost::filesystem::path dir);
    std::vector<std::string> getSubDirsFromDir(boost::filesystem::path dir);
    unsigned int getSubDirsCountFromDir(boost::filesystem::path dir);
};

#endif /* FILEUTILITY_H_ */

的每个用法都boost::filesystem::path被标记为如上所述的错误。

4

1 回答 1

0

我必须安装libboost-filesystem-devlibboost-system-dev

于 2012-09-03T21:12:25.437 回答