Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3876802
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T22:25:28+00:00 2026-05-19T22:25:28+00:00

I have three classes: a TopClass which contains an instance of a BottomClass pointer.

  • 0

I have three classes: a TopClass which contains an instance of a BottomClass pointer. The BottomClass contains a pointer to a HelperClass. The HelperClass keeps a pointer to the TopClass. Circular dependency pops up and a forward declaration is needed in the HelperClass.

All of this is illustrated with the following code snippets:

#include "BottomLevel.h"

namespace foo
{
  class TopLevel
  {
  private:
    BottomLevel* item;
  };
}

–

#include "HelperClass.h"

namespace foo
{
  class BottomLevel
  {
  private:
    HelperClass* item;
  };
}

–

class TopLevel; // forward declaration here

namespace foo
{
  class HelperClass
  {
  public
    HelperClass(TopLevel* item);
  };
}

The issue comes when trying to do things in the implementation file. If I #include "TopClass.h" in the cpp file, I get compilation errors stating “overloaded member function not found — use of undefined type ‘TopLevel‘” (ERRORS C2511 and C2027).

Then, if I don’t do the #include I’m still left with C2027 errors because I try to use the forward declared type.

I just know there is a method to fix this, I’m sure I’ve done it before, but I can’t for the life of me remember what I’m supposed to do. Any help please?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T22:25:28+00:00Added an answer on May 19, 2026 at 10:25 pm

    The problem is that you’re forward declaring TopLevel outside the foo namespace so the compiler is never finding the class foo::TopLevel.

    Try moving the forward declaration of TopLevel inside the foo namespace.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have three classes: A data holder class CDataHolder, which uses a Pimpl pattern
I have three classes which implement the same protocol, and have the same parent
I have three classes, TImageProcessingEngine , TImage and TProcessing TImageProcessingEngine is the one which
Suppose I have three classes. It is valid to instantiate A, but there are
Say I have three classes: class X{}; class Y{}; class Both : public X,
If I have three classes, A, B, C. A and B are friends (bidirectionally).
I have three (C++) classes: Player, Hand, and Card. Player has a member, hand,
I have a three nested classes, Show, Season and Episode, where a show has
I have three classes that pose a problem when trying to add a new
I have three classes (class A, class B, and class C). Class A calls

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.