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

learn more… | top users | synonyms (1)

2
votes
3answers
55 views

Record containing access to instantiation of generic package based on that record

This is really an annoying problem. I have a record type that wraps various base types and now I need it to be able to store a vector (from Ada.Containers.Vectors) in itself! I guess that's not ...
1
vote
3answers
50 views

Why is forward declaration of structure not working in my code? When can it be used in C?

Isn't forward declaration, whether for structures or functions, supposed to do what forward declaration is expected to do, ie, to let us use the structure or function before they are defined? Why is ...
0
votes
5answers
68 views

Forward declaration and delete

My teacher told me to do a final homework. I need to make a list of things in C++ (cant use boost, STL, etc). My Stuff class HAVE TO be defined AFTER a List class. Little sample what I tried: ...
2
votes
4answers
56 views

Forward declarations and shared_ptr

I'm trying to refactor my code so that I use forward declarations instead of including lots of headers. I'm new to this and have a question regarding boost::shared_ptr. Say I have the following ...
2
votes
2answers
104 views

forward declaration of procedure in delphi

How can I make a forward declaration of a procedure in Delphi and make it's implementation in other place? I want to do something like this C's code but in Delphi: void FooBar(); void FooBar() { ...
0
votes
2answers
77 views

Template class forward declaration

I am forward declaring a template outer and inner class as follows template<class T> class outer; class inner; Just after the above declaration I have a boost::serialization declaration ...
0
votes
2answers
29 views

forward declaration of ‘struct bb’, classes

I almost solved issues with my code with the help of stackoverflow users but now have different problem. My code now looks like this: #include <iostream> #include <cmath> #include ...
1
vote
1answer
57 views

C++ template method forward declaration

I'm having a little problem with my classes. I have two classes which both use template methods, therefore I have to put it in the header. Here is an example. I'd like it to compile properly without ...
0
votes
3answers
61 views

invalid use of incomplete type in handling exceptions

How to implement the following without troubles connected with "invalid use of incomplete type"? class A { // line#10 /*(...) some fields and methods here. */ // more fields of the following ...
1
vote
1answer
29 views

invalid use of incomplete type (nested class case)

how can I implement such an idea in C++ without getting into "invalid use of incomplete type" trouble? class A { /*(...) some fields and methods here. */ class B { /*(...) some fields ...
-2
votes
1answer
67 views

Struct declaration in C [closed]

I have a simple program in pure C, for reading records from file and putting the into linked list. I am not allowed to use global variables. Program looks like this: Here are some includes Some ...
0
votes
2answers
82 views

Unknown type name class

I have the following header files: https://gist.github.com/wemakeweb/5501443 and the compiler always reports "Unknown Type name Class". I have included Forward Declaration, to break circular ...
2
votes
1answer
46 views

difference between #import and @class in my simple case

In my controller's header file, I need to declare a instance of another controller. I did it in the following way: #import "BIDMyRootController.h" #import "BIDAnotherController.h" //I import another ...
2
votes
2answers
43 views

Includes and classes in C++

Well, i have the following problem.. I have main.cpp #include "serverClass.h" ... and then in serverClass.h, #ifndef SERVERCLASS_H_ #define SERVERCLASS_H_ #include <stdio.h> #include ...
0
votes
2answers
70 views

Forward-declare a typedef

I have got a large header file (~10000 lines) which is auto-generated by a script/program out of my control. In order to avoid to include this file in the declaration of my class, I forward declare ...
4
votes
2answers
90 views

Collect common includes in a single file - good practice?

I am trying to learn how to deal with a lot of includes, and still keep my code tidy. I am programming a Qt application and I have put files commonly used (and that doesn't change) in a file called ...
1
vote
1answer
53 views

forward declaration of smth that represents the list of elements

What should I do to declare forward A, that represents a list of elements B, each of which refers to the C, that boost::recursive_wrapper-s to the A? Especially interested in case of when all the ...
1
vote
2answers
71 views

Forward declaration of a method

I have a little problem concerning forward declaration. I have the following class in one file Robot.h class Robot { public: void moveForward() private: } With the implementation in Robot.cpp ...
3
votes
4answers
58 views

Does the forward declaration need to be identical to its counterpart in the definition?

Notice how in this code, the double quadratic(); at the top doesn't match the **double quadratic(double a, double b, double c) in the definition below main. Yet oddly, this compiles! I'm using gcc ...
3
votes
3answers
67 views

Forward declaration between files

All: I have two files: main.cpp #include <iostream> using namespace std; class A; int main(){ A a; a.disp(); return 0; } and A.cpp #include <iostream> using ...
0
votes
2answers
46 views

How come when I make a small change I get errors saying things aren't declared? When they are

I have a program that has 20+ class/header files. Everything was smooth sailing up until I started making some changes yesterday. It literally took me forever just to figure out that I needed a ...
0
votes
4answers
51 views

Trying to resolve circular reference error between my deque class and tree class

Could anyone help me resolve the circular reference errors I'm getting here. I've created my own deque class which is used by the breadthFirst method of FibTree. Below are the highlights from the ...
0
votes
1answer
32 views

How can I have cyclic or forward ReferenceField when using reverse_delete_rule in MongoEngine?

This code bombs: from mongoengine import * class Employee(Document): name = StringField() boss = ReferenceField("Employee", reverse_delete_rule = NULLIFY) Heres the exception: Traceback ...
2
votes
3answers
68 views

c++ forward declaration of a static class member

I have a class: class M { public: static std::string t[]; }; with an initialization that comes later. I want to use the M::t later in a different class (header file): class Use { public: ...
1
vote
2answers
44 views

Maxscript function forward declaration

I'm having the age old problem of Maxscripts not working the first time they are run (from a cold start) because the functions need to be declared before they are used. The following script will fail ...
1
vote
2answers
131 views

Can C++ inline function call function declared later in the header?

The following works just-fine in MSVC2008 and MSVC2010: class Foo { public: static void FuncA(void) { FuncB(); // "FuncB()" NOT DECLARED YET? WORKS, MSVC2008 } static void FuncB(void); }; ...
3
votes
3answers
77 views

How to forward declaration of classes in C++?

Why forward declaration of A and B classes doesn't work? #include <iostream> using namespace std; class A, B; class A { public: A() { new B(); } }; class B { public: ...
2
votes
1answer
63 views

C++ include files confusion

I'm trying to include files in my c++ program but I keep encountering the error: ShapeVisitor.h:9:28: error: ‘Circle’ has not been declared I think the problem is that the way the classes are ...
2
votes
3answers
160 views

Forward declaration of function pointer typedef

I've run into a peculiar problem. It might be best to just show you what I'm trying to do and then explain it. typedef void functionPointerType ( struct_A * sA ); typedef struct { ...
3
votes
1answer
59 views

C++: Forward class definition required to compile some code

I am programming a small game in C++ as an exercise, and I've come across a conundrum. The basic idea is that a Level has a vector of Entity, and each Entity instance knows which level it belongs to. ...
1
vote
1answer
75 views

Conflict between Using Declaration and Forward Declaration

Lets go for a walk with Bulldog :) Say I have a namespace Street::House (inside namespace Street) where the class Bulldog is declared (let it be in House/Bulldog.hpp): namespace Street { namespace ...
1
vote
2answers
87 views

forward declaration problems

I think I am having a problem with forward declarations. I think one is necessary, but I'm not sure. Basically I have a main.cpp: //main.cpp #include <iostream> #include "CalculateForces.h" ...
0
votes
1answer
35 views

Forward of declarations not fixing incomplete type

Despite many questions similar to this I'm unable to find one that can answer such a simple query - however due to the volume you'll have to forgive me if I have missed it. Within the following code, ...
0
votes
1answer
66 views

Is it possible to declare a nested type alias using a forward declared class in C++11?

I'm breaking up a circular include dependency by forward declaring the class in its respective header, however that puts a small wrinkle in the existing convention of using a type alias inside of a ...
3
votes
1answer
67 views

Forward declaration syntaxes have different behavior

When forward declaring the member of a class, you can either do class Bar; Bar* m_baror the shorter class Bar* m_bar. But the name resolution seems to behave differently. For example this compiles ...
1
vote
1answer
257 views

Enum Forward Declaration

I'm trying to use correctly forward declaration for enums. Therefore I searched the internet but I can't find something that works. I'm using in a header : // Forward declaration enum ...
1
vote
1answer
106 views

forward declaration of global friend function

I have the following namespaces and classes hierarchy: namespace Ns1 { class Outer { private: class Inner { }; QSet<Inner> set; }; } Now I need to ...
0
votes
0answers
24 views

template parameter of shared_ptr in dll exported class

I made some class which owns shared_ptr member like below. #include <memory> template<typename T> class a { T m; }; class b; // forward declare class __declspec(dllexport) test { ...
0
votes
1answer
123 views

Updating Winform Control From Another Thread and Class C++

I have been struggling with trying to update a Winform control from another thread and another class in C++. I see several questions about this topic but each one seems incomplete in someway and I ...
0
votes
3answers
93 views

Forward declaration VS compiling order error in c++ to avoid recursive header inclusion

I'm working on a large code in c++ composed by a lot of .h and .c files. The main problem is caused by a pair of class wich are supposed to link each other. Due to declaration need in the software ...
2
votes
3answers
86 views

Must this code works?

I have the next sample code that compiles with gcc (4.7.2 using -std=c++11): template<class C> struct template_test { C testing() const { return C(); } }; class A; struct ...
1
vote
2answers
136 views

Function prototype vs include header in cpp

I have function that do some work. A.h void doSomething(int n); A.cpp #include "A.h" void doSomething(int n) { /* something */ } If I want to use this function in another source file, ...
1
vote
1answer
88 views

Is it safe to forward declare a template class even if I know which generic I'll be using?

This compiles, but I'm wondering if it's unsafe. In my header I forward declare this class QStringList; template<> class QList<QStringList>; class MyClass { ... static void ...
0
votes
4answers
44 views

Forward declaration of function messes up, saying args are undeclared identifiers

This is my code: mainheader.h void displaygrid(int (* _grid)[10][10] , string msg ); something.cpp #include <string> #include "mainheader.h" void displaygrid(int (* _grid)[10][10], string ...
2
votes
2answers
76 views

Declare a variable or function in one library and define it in another

I have a library I use in all my apps, containing common code. I compile it as a "Framework" for Mac and a "Static Library" for iOS. I would like for the library to be able to reference a variable ...
1
vote
1answer
242 views

Porting C -> C++, having trouble with accessing struct within unnamed union

I've been working on porting Marcel’s Simple Chess Program http://marcelk.net/mscp/ from C to C++. I have never worked much with unions, much less structs within unions. The top part I've listed is ...
3
votes
1answer
121 views

C++ Define Class in One File and Forward Declare It in Another

Is it legal/advised to do this in C++ //Interface.h #ifndef INTERFACE_H #define INTERFACE_H #include "WinImplementation.h" #include "NixImplementation.h" class Interface { class ...
1
vote
1answer
150 views

Why must we Forward Declare a class and include the corresponding header file in a header file

Hi I noticed if I include a header file in a .cpp then I can create an object of that header file's class. Like if I includeA.h in main.cpp then I can write A *a; in main.cpp. But this doesn't work if ...
1
vote
1answer
84 views

Template classes using each other gives ambiguity error

I have two template classes A and B in the same header file as follows: template <typename T> class FirstClass { public: bool convert(const FirstClass<T>& f){...} bool ...
1
vote
2answers
137 views

forward declaration in typescript

I've got two classes that need to know one another's members. In C++ I'd use a forward declaration. What do I have to do in typescript?

1 2 3 4 5 7