pullflowmonitor.cpp:124:2: error: 'VehTypeFuncOpen' was not declared in this scope VehTypeFuncOpen(&m_hVehTypeDetect,PullFlowMonitor::vehHeadDataCallback,PullFlowMonitor::vehSideDataCallback,PullFlowMonitor::vehBackDataCallback,PullFlowMonitor::vehAllDataCallback,this); ^~~~~~~~~~~~~~~ pullflowmonitor.cpp:124:2: note: suggested alternative: 'VehPlateFuncOpen' VehTypeFuncOpen(&m_hVehTypeDetect,PullFlowMonitor::vehHeadDataCallback,PullFlowMonitor::vehSideDataCallback,PullFlowMonitor::vehBackDataCallback,PullFlowMonitor::vehAllDataCallback,this);
时间: 2024-02-04 14:02:08 浏览: 68
codeblocks中报错:'to_string' was not declared in this scope解决方案
5星 · 资源好评率100%
这个错误提示说找不到名称为 "VehTypeFuncOpen" 的符号,它没有被声明在当前作用域中。看起来你在代码中使用了 "VehTypeFuncOpen" 这个函数,但是编译器找不到它。
另外,错误提示中还提到了一个 "VehPlateFuncOpen",可能是一个类似的函数名称,但不是你当前调用的函数。
你需要检查一下代码,看看是否在正确的头文件中包含了相关的声明或定义。另外,还需要确认一下你是否正确地设置了编译器的搜索路径和链接库。如果是第三方库,你需要确保它已经正确地安装并配置好了。
阅读全文