所以我试图 #include
一个我写到我的驱动程序类中的文件,但 VSCode 说
#include 检测到错误。请更新您的包含路径。此翻译单元禁用了波浪线
我想知道这是否是我的错误,或者 VSCode 中的某些内容是错误的。这是我的 .h 文件:
#ifndef _rotor_h_
#define _rotor_h_
#include <algorithm>
#include <map>
#include <vector>
#include <iterator>
using namespace std;
class Rotor
{
// class body
};
#endif
我确定的驱动程序与 .h 文件在同一个文件夹中,然后有 #include "rotor.h"
。有什么我在这里遗漏的吗?