本文介绍了网络设置期间模块出错:的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

未找到类,可能未链接或未使用 Register_Class() 注册该类,或者在模块和通道的情况下,使用 Define_Module()/Define_Channel().

Class not found perhaps it was not linked in or the class wasn't registered with Register_Class(), or in the case of modules and channels, with Define_Module()/Define_Channel().

推荐答案

建议你使用

Define_Module(yourModule)

在您的 .cc 文件中.

in your .cc file.

如果出现错误,请检查 yourModule.h 中列出的所有函数是否也在 yourModule.cc

If this gives error, check that all the functions listed in yourModule.h have been also declared in yourModule.cc

这篇关于网络设置期间模块出错:的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-24 20:00