call another class in dll file
I have my own class i开发者_JAVA技巧nside the file name "Render.h" and the class implementation is inside the "Render.cpp".Now I want to access or call this class (Render.cpp) in my DLL file.
I want the file "Load .h" which is a dll file to recognize this class "Render.h".
What should I do? Please do help me.(in c ++)
include the Render.h into Load.h (or Load.cpp depending on your context) and include Render.cpp in the DLL project.
精彩评论