You can use a forward declaration!
Qt Code:
class mainFrame; class Plot { public: Plot(mainFrame *mf = 0); //... };To copy to clipboard, switch view to plain text mode
You can use a forward declaration!
Qt Code:
class mainFrame; class Plot { public: Plot(mainFrame *mf = 0); //... };To copy to clipboard, switch view to plain text mode
rambo83 (26th November 2009)
Yes, you are right, Lykurg!
I have just found something about forward declaration in Google and used it in my code and it works now! Thank you very much.
best regards,
Vitali
Bookmarks