我正在使用 Visual C++ 2010 进行编程。我有一个 example.h example.cpp 和 Form1.h。基本上,我已经粘贴了一些代码。我无法在 example.h 文件中包含 Form1.h,不知道为什么。但主要问题是如何从 example.cpp 调用 Test(在 form1.h 中)?语法是什么?是否有可能做到这一点?
我的 Form1.h
#include "example.h"
public ref class Form1 : public System::Windows::Forms::Form
{
public: void Test(void)
{
// Does something
}
}
我的例子.cpp
#include "example.h"
#include "Form1.h"
Test(); // would like to call Test from here.