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

  • Home
  • SEARCH
  • 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 174127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:27:58+00:00 2026-05-11T13:27:58+00:00

In my C++ header files I try to use forward declarations (class MyClass;) instead

  • 0

In my C++ header files I try to use forward declarations (class MyClass;) instead of #including the class header, as recommended in many C++ coding standards (the Google C++ Style Guide is one).

Unfortunately, when I introduce enumerations, I can’t do the forward declaration any more. Like this:

//// myclass1.hpp ////  class MyClass1 {     enum MyEnum1     {         Enum_A, Enum_B, Enum_C     }; };  //// myclass2.hpp ////  // I want to avoid this #include 'myclass1.hpp'  // I'd prefer to do this (forward declaration) class MyClass1;  class MyClass2 {     // This is o.k.: I only need to forward declare MyClass1     MyClass1* ptr;      // This forces me to #include, but I don't want to!     void func( MyClass1::MyEnum1 e ); }; 

The best solution I can think of so far is to replace enums with member constants:

//// myclass1.hpp  ////  MyClass1 {     static const int Enum_A;     static const int Enum_B;     static const int Enum_C; };  //// myclass1.cpp ////  const int Enum_A = 1; const int Enum_B = 2; const int Enum_C = 3; 

In this case, though, the solution seems worse than the problem.

I’m currently looking through Large Scale C++ Software Design (Lakos) and Working Effectively with Legacy Code (Feathers) for dependency breaking techniques, but I haven’t found a good solution yet.

  • 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. 2026-05-11T13:27:58+00:00Added an answer on May 11, 2026 at 1:27 pm

    You cannot forward declare enum values – and your workaround is a step down the path to complete madness.

    Are you experiencing any major compilation slowdowns caused by #including headers? If not, just #include them. Use of forward declarations is not ‘best practice’ it is a hack.

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

Sidebar

Ask A Question

Stats

  • Questions 153k
  • Answers 153k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Besides XML configuration, Spring ActionScript also supports MXML configuration. The… May 12, 2026 at 10:21 am
  • Editorial Team
    Editorial Team added an answer A CommandBinding is just like any other element in your… May 12, 2026 at 10:21 am
  • Editorial Team
    Editorial Team added an answer I think using AsyncControllers will help you here as they… May 12, 2026 at 10:21 am

Related Questions

The library I'm using has class G and class S which inherits G. I
I have just installed boost for the first time on my Intel Mac, and
How I can install multiple versions of a library in Delphi or C++Builder? For
I'm creating a package that is going to be used by R (the statistical

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.