我正在使用第三方dll并使用它的方法。因为他们的funcs不在TForm命名空间中,所以我不能在类TfMain : public TForm {}
定义之前使用我单元中编写的结构。
尝试了
friend struct SVisDoc{
..
..
} doc;
不知怎的,我需要让它成为朋友才能使用
void MethName(args) // not in TForm::
{
//I need to use it here
}
查看How do you mark a struct template as friend?但在初始化期间显示错误。
如何让我的结构朋友?