I have this example below. How to solve this problem?

Qt Code:
  1. class ABC{
  2. private:
  3. XYZ *xyz; //XYZ is not defined yet
  4. };
  5.  
  6. class XYZ{
  7. private:
  8. ABC *abc; //ABC is defined above
  9. };
To copy to clipboard, switch view to plain text mode