无法解析在头文件中定义的eclipse c ++函数

时间:2013-03-18 13:47:10

标签: c++ eclipse

我正在尝试编译一个c ++程序,但是我收到了错误

Function 'Argument' could not be resolved ...... Semantic Error

Argument在我已包含在项目中的app.h中定义。

我已转到Project > Properties > C/C++ General > Paths and Symbols > Includes包含了头文件。在GNU C++点击Add下,然后点File System并输入文件路径。

我无法弄清楚为什么会收到此错误。

给我一​​个错误的一行是:

ARGUMENTS = {
  Argument ("input", "input image", "the input image.").type_image_in (),
  Argument ("ouput", "output image", "the output image.").type_image_out (),
  Argument::End
};

并在'app.h'中:

#define ARGUMENTS   const MR::Argument __command_arguments[]

解: 关闭项目并重新开放它解决了问题......

1 个答案:

答案 0 :(得分:1)

解决方案:关闭项目并重新打开它解决了问题......