I have this example below. How to solve this problem?
Qt Code:
class ABC{ private: XYZ *xyz; //XYZ is not defined yet }; class XYZ{ private: ABC *abc; //ABC is defined above };To copy to clipboard, switch view to plain text mode
I have this example below. How to solve this problem?
Qt Code:
class ABC{ private: XYZ *xyz; //XYZ is not defined yet }; class XYZ{ private: ABC *abc; //ABC is defined above };To copy to clipboard, switch view to plain text mode
Bookmarks