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[]
解決策:プロジェクトを閉じて再度開くと、問題が解決しました......