Tagged Questions

Forward declarations allow statically-typed programs to indicate the type and name of a symbol without actually defining it.

learn more… | top users | synonyms

53
votes
9answers
7k views

When to use forward declaration?

I am looking for the definition of when I am allowed to do forward declaration of a class in another class's header file: Am I allowed to do it for a base class, for a class held as a member, for a ...
28
votes
5answers
17k views

Forward declaration of a typedef in C++

Why won't the compiler let me forward declare a typedef? Assuming it's impossible, what's the best practice for keeping my inclusion tree small?
27
votes
3answers
6k views

Forward declaration of nested types/classes in C++

I recently got stuck in a situation like this: class A { public: typedef struct/class {...} B; ... C::D *someField; } class C { public: typedef struct/class {...} D; ... A::B ...
16
votes
2answers
1k views

Why does a C++ friend class need a forward declaration only in other namespaces?

Suppose I have a class F that should be friend to the classes G (in the global namespace) and C (in namespace A). to be friend to A::C, F must be forward declared. to be friend to G, no forward ...
15
votes
3answers
449 views

Refactoring C++ code to use forward declarations

I've got a largeish codebase that's been around for a while and I'm trying to tidy it up a bit by refactoring it. One thing I'd like to do is find all the headers where I could forward declare ...
13
votes
4answers
6k views

Templates: Use forward declarations to reduce compile time?

I have to deal with a library that consists of many templated classes, which are of course all implemented in header files. Now I'm trying to find a way to reduce the unbearably long compile times ...
12
votes
5answers
349 views

Why doesn't C++ need forward declarations for class members?

I was under the impression that everything in C++ must be declared before being used. In fact, I remember reading that this is the reason why the use of auto in return types is not valid C++0x ...
11
votes
3answers
659 views

Why can't I use a Javascript function before it's definition inside a try block?

As discussed here, function definitions can be used before they're defined. But as soon as a section of code is wrapped in a try block, this ceases to be the case. This displays "Hello world": ...
10
votes
6answers
406 views

Why, really, deleting an incomplete type is undefined behaviour?

consider this classic example used to explain what not to do with forward declarations: //in Handle.h file class Body; class Handle { public: Handle(); ~Handle() {delete impl_;} ...
10
votes
9answers
6k views

Is it possible to forward-declare a function in Python?

I want to sort a list using my own cmp function. For the purpose of this discussion we can use the following example which is equivalent to what I'm trying to do: print "\n".join([str(bla) for bla ...
10
votes
3answers
511 views

Is there a shorter way to forward declare a class in a namespace?

I can forward declare a function in a namespace by doing this: void myNamespace::doThing(); which is equivalent to: namespace myNamespace { void doThing(); } To forward declare a class in a ...
9
votes
5answers
87 views

How can I declare a friend function in a namespace that takes an inner class as a parameter?

Consider this code: namespace foo {} class A { class B { }; friend int foo::bar( B& ); }; namespace foo { int bar( A::B& ) { } } G++ 4.4.3 tells me: ...
9
votes
11answers
944 views

Forward declarations of typedef struct

Bounty question: So, these two Foos aren't the same thing. Fine. The second form is given in a library. How do I forward-declare it given that I can't change it? I always thought C and C++ allowed ...
9
votes
2answers
412 views

How to set a forward declaration with generic types under Delphi 2010?

I run into what seems to be a very classical problem: An item and a collection class, both referencing each other, that require a forward declaration. I'm using Delphi 2010 with update 5. This works ...
8
votes
3answers
500 views

delete objects of incomplete type

This one made me think: class X; void foo(X* p) { delete p; } How can we possibly delete p if we do not even know whether X has visible destructor? g++ 4.5.1 gives three warnings: warning: ...
8
votes
2answers
415 views

C++ boost forward declaration question

I spend some time examining boost:: libraries architecture and was interested with the following fact: In some parts of the libraries a yyy_fwd.hpp idea is used pretty common (see boost/detail or ...
8
votes
3answers
559 views

Is there a way to forward declare covariance?

Suppose I have these abstract classes Foo and Bar: class Foo; class Bar; class Foo { public: virtual Bar* bar() = 0; }; class Bar { public: virtual Foo* foo() = 0; }; Suppose further that I ...
7
votes
1answer
91 views

Can I pass value of forward declared enum?

When passing forward declared struct or a class, one has to pass it to a function through a reference or a pointer. But, what can be done with a forward declared enum? Does it also have to be passed ...
7
votes
2answers
121 views

Illegal forward reference error for static final fields

I'm trying to compile a Java class which javac rejects with an illegal forward reference error, where the offending reference is lexically after the referenced field. The following class is stripped ...
7
votes
2answers
97 views

Is it always inappropriate to #import more than absolute necessary in Objective-C interfaces?

I'm well aware that the general rule of thumb is you should only import what is necessary—base class interfaces, protocol interfaces, etc.—for a class to compile and use @class for everything that can ...
7
votes
2answers
262 views

How to break this circular typedef?

I want to declare a couple of types (internal to a class templated on K and V and providing some caching behaviour): typedef std::map< long long, typename key_to_value_type::iterator // ...
7
votes
5answers
1k views

Forward Declaration vs Include

Consider the following two scenarios (Edited just to complete the whole question and make it clearer) Case 1: (doesnt compile as rightly mentioned below) //B.h #ifndef B_H #define B_H #include "B.h" ...
6
votes
5answers
128 views

Advantages of typedef over derived class?

Simply put, what are the (or are there any) differences between doing say class MyClassList : list<MyClass> { }; vs typedef list<MyClass> MyClassList; The only advantage that I can ...
6
votes
1answer
173 views

Why is forward declaration of a class which will be a typedef not allowed?

If I want to use a pointer to a class and I dont do any operations on it, we can forward declare the class. But if that happens to be a typedef, why is it not allowed? In the following example, it ...
6
votes
1answer
141 views

Why is there no <stlfwd> header and can the non-existance of it be considered a defect?

The standard library includes an <iosfwd> header, that (forward) declares all streams including any typedefs and defines the char_traits template, including the specializations. Sadly, there is ...
6
votes
9answers
365 views

Why is including a header file such an evil thing?

I have seen many explanations on when to use forward declarations over including header files, but few of them go into why it is important to do so. Some of the reasons I have seen include the ...
6
votes
4answers
421 views

Declare before use in C++

I'm wondering why the declare-before-use rule of C++ doesn't hold inside a class. Look at this example: #ifdef BASE struct Base { #endif struct B; struct A { B *b; A(){ ...
6
votes
4answers
2k views

C++ namespace alias and forward declaration

I am using a C++ third party library that places all of its classes in a versioned namespace, let's call it tplib_v44. They also define a generic namespace alias: namespace tplib = tplib_v44; If a ...
5
votes
5answers
91 views

Terminology: Forward Declaration versus Function Prototype

To me these terms are essentially synonymous when using the C programming language. In practice I might prefer "forward declaration" for in-file prototypes versus "function prototype" for prototypes ...
5
votes
7answers
194 views

Disadvantages of forward declaration?

In C++ and Objective-C, I've gotten into the habit of forward-declaring any necessary classes that do not need to be defined in the header, and then importing the header files defining those classes ...
5
votes
7answers
400 views

Forward declaration just won't do

Below are two fragments (ready to compile) of code. In first fragment in which I'm using only forward declaration for a struct while deleting pointer to this struct from a Base class dtor for a Guest ...
5
votes
5answers
531 views

Forward declare FILE *

How do I forward declare FILE * in C? I normally do this using struct MyType;, but naturally this doesn't appear to be possible. If behaviour differs between C standards or compilers and with C++, ...
5
votes
7answers
305 views

Compiling C++ when two classes refer to one another

I am trying to write a simple wrapper around a connection pointer that will return it to the pool when the wrapper is destroyed, but it wont compile because the ConnectionPool and AutoConn need each ...
5
votes
4answers
2k views

can two classes see each other using C++?

So I have a class A, where I want to call some class B functions. So I include "b.h". But, in class B, I want to call a class A function. If I include "a.h", it ends up in an infinite loop, right? ...
5
votes
4answers
2k views

Default template parameters with forward declaration

Is it possible to forward declare a class that uses default arguments without specifying or knowing those arguments? For example, I would like to declare a boost::ptr_list< TYPE > in a Traits ...
4
votes
4answers
283 views

Why include a header and forward declare the class contained in the same cpp file?

I've been looking at the Fear SDK for my university project, but have noticed some code like so: Foo.h class Foo { public: int iSomething; }; Bar.cpp: #include "Foo.h" // Forward ...
4
votes
2answers
403 views

What can I “forward declare” in C++?

I know I can do class Foo; and probably struct Bar; and global functions bool IsValid(int iVal); What about a typed enum? What about a typed enum within an undeclared class? What about a ...
4
votes
3answers
293 views

How does a C/C++ compiler find the definitions of prototypes in header files?

When I declare a function in a header file, and put the definition of that function in some other file, how does the compiler/linker find the definition? Does it systematically search every file in ...
4
votes
1answer
271 views

OCaml forward declaration

Is there a way to do a C-style forward declaration in OCaml? My problem is that I have two variants which mutually refer to each other: type path_formula = [ `Next of state_formula | `Until of ...
4
votes
3answers
166 views

C++: How to use types that have not been defined?

C++ requires all types to be defined before they can be used, which makes it important to include header files in the right order. Fine. But what about my situation: Bunny.h: class Bunny { ...
4
votes
6answers
526 views

C++ forward declaration problem

I have a header file that has some forward declarations but when I include the header file in the implementation file it gets included after the includes for the previous forward declarations and this ...
4
votes
2answers
691 views

forward declare typedef'd struct

I can't figure out how to forward declare a windows struct. The definition is typedef struct _CONTEXT { .... } CONTEXT, *PCONTEXT I really don't want to pull into this header, as it gets included ...
4
votes
4answers
1k views

In C++, is it possible to forward declare a class as inheriting from another class?

I know that I can do: class Foo; but can I forward declare a class as inheriting from another, like: class Bar {}; class Foo: public Bar; An example use case would be co-variant reference ...
4
votes
2answers
3k views

Forward declare a class's public typedef in c++

I'm trying to simplify a bunch of header file "include spaghetti" by using forward declarations and moving #includes into the implementation file. However, I keep coming upon the following scenario: ...
3
votes
2answers
89 views

C++: How can I make two classes declared on the same .cpp “see” each other at compile time?

When compiling this code on VS2008: #include <vector> using namespace std; class Vertex { public: double X; double Y; double Z; int id; // place of vertex in ...
3
votes
3answers
64 views

How to make a forward declaration for private method?

I'm arranging my methods into groups using #pragma mark in implementation. But sometimes, the method implementation code appears below the code that calls this method, and I'm getting "Instance method ...
3
votes
3answers
130 views

Declare a member-function of a forward-declared class as friend

Is it possible to declare a member function of a forward-declared class as friend? I am trying to do the following: class BigComplicatedClass; class Storage { int data_; public: int data() { ...
3
votes
2answers
137 views

forward declaring with inheritance information

This compiles fine, although I wouldn't want to try running it just yet. However ... //class base; //class derived; //class derived : public base; class base {}; class derived : public base {}; ...
3
votes
1answer
234 views

Method to return pointer, pointing to array object declared in another header,

I'm getting a little stuck with two entwined problems. First, I want to have an array of pointers to objects on the heap. (objects that are declared in another header) Second, then I want to have a ...
3
votes
4answers
306 views

Forward headers for STL containers

The header <iostream> has a companion <iosfwd> which is sufficient if I only need pointers or references to streams. The latter is a common scenario when overloading operator<<. Is ...

1 2 3 4