473,385 Members | 1,908 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Confusion over including header files...Can you give me a quick hand?

Ok, this may sound confusing....but it's really simple. If you're confused,
just look at my example code and it'll make sense.

Here's my situation. I have 2 classes....A and B.

Class A has a member variable of type B.
Class B has a member function which does calculations which are dependent
upon values of members of the Class A that owns it.

When in that function of class B, I don't know how I can gain access to it's
parent Class A's member variables, so my solution to the problem is to take
as a parameter to that function, a class A datatype. So, it's like this:

class A
{
public:
int x;
B myB;
:
:
};

class B
{
public:
int y;
void theFunction(A parentA);
:
:
};

void B::theFunction(A parentA){
y = parentA.x * 10;
}

I would call it like this:
A myA;
myA.myB(myA);

Now, the problem is, both A.h and B.h have to include eachother. When they
do, I get the following compilation errors:
A.h(10): error C2143: syntax error : missing ';' before 'B'
A.h(10): error C2501: 'A::B' : missing storage-class or type specifiers

Line 10 is the line that I declare B myB is A.h.

If I comment out theFunction in B and I comment out the include of A.h,
it'll compile no problem. But that obviously isn't the solution as B can't
use A.

So, I need one of 2 solutions. Either (and most preferably) I somehow gain
access to the parent object A's member variables, without having to pass A
as a parameter to B's function....or, I keep it like it is, but somehow get
it to compile.

Can anyone inform me how either of the above can be accomplished?

Oh...and I know I could just pass myA.x, but don't want to do that as the
real function is called often and is actually dependent upon many member
variables of A.

Thanks a lot for any help!
Jul 19 '05 #1
7 1784
"Eternally" <m@r.com> wrote...
Ok, this may sound confusing....but it's really simple. If you're confused, just look at my example code and it'll make sense.

Here's my situation. I have 2 classes....A and B.

Class A has a member variable of type B.
Class B has a member function which does calculations which are dependent
upon values of members of the Class A that owns it.

When in that function of class B, I don't know how I can gain access to it's parent Class A's member variables, so my solution to the problem is to take as a parameter to that function, a class A datatype.
That's one way to do it...

An alternative way would be to pass the 'A*' during construction
of the member B, and then B will always know where its parent is.
So, it's like this:

class A
{
public:
int x;
B myB;
:
:
};

class B
{
public:
int y;
void theFunction(A parentA);
I wouldn't pass by value, of course. It is better to pass by
reference, for example. All you need to declare is that 'A' is
a class, really. This should help:

void theFunction(class A parentA);

and you don't need to include the declaration of A.
:
:
};

void B::theFunction(A parentA){
y = parentA.x * 10;
}

I would call it like this:
A myA;
myA.myB(myA);

Now, the problem is, both A.h and B.h have to include eachother. When they do, I get the following compilation errors:
A.h(10): error C2143: syntax error : missing ';' before 'B'
A.h(10): error C2501: 'A::B' : missing storage-class or type specifiers

Line 10 is the line that I declare B myB is A.h.

If I comment out theFunction in B and I comment out the include of A.h,
it'll compile no problem. But that obviously isn't the solution as B can't use A.

So, I need one of 2 solutions. Either (and most preferably) I somehow gain access to the parent object A's member variables, without having to pass A
as a parameter to B's function....or, I keep it like it is, but somehow get it to compile.
See above. The alternative solution I was talking about is to
declare 'B's constructor as accepting A&:

class A; // forward declataion
class B {
A& parent;
public:
B(A& p) : parent(p);
};

....
class A {
B myB;
public:
A() : myB(*this) {}
...
};

The compiler may not line the use of 'this' in the initialiser list,
but you can ignore the warning.
Can anyone inform me how either of the above can be accomplished?

Oh...and I know I could just pass myA.x, but don't want to do that as the
real function is called often and is actually dependent upon many member
variables of A.


Shouldn't it be a member of A, then?

Victor
Jul 19 '05 #2

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vg************@corp.supernews.com...
"Eternally" <m@r.com> wrote...
Ok, this may sound confusing....but it's really simple. If you're

confused,
just look at my example code and it'll make sense.

Here's my situation. I have 2 classes....A and B.

Class A has a member variable of type B.
Class B has a member function which does calculations which are dependent upon values of members of the Class A that owns it.

When in that function of class B, I don't know how I can gain access to

it's
parent Class A's member variables, so my solution to the problem is to

take
as a parameter to that function, a class A datatype.


That's one way to do it...

An alternative way would be to pass the 'A*' during construction
of the member B, and then B will always know where its parent is.
So, it's like this:

class A
{
public:
int x;
B myB;
:
:
};

class B
{
public:
int y;
void theFunction(A parentA);


I wouldn't pass by value, of course. It is better to pass by
reference, for example. All you need to declare is that 'A' is
a class, really. This should help:

void theFunction(class A parentA);

and you don't need to include the declaration of A.
:
:
};

void B::theFunction(A parentA){
y = parentA.x * 10;
}

I would call it like this:
A myA;
myA.myB(myA);

Now, the problem is, both A.h and B.h have to include eachother. When

they
do, I get the following compilation errors:
A.h(10): error C2143: syntax error : missing ';' before 'B'
A.h(10): error C2501: 'A::B' : missing storage-class or type specifiers

Line 10 is the line that I declare B myB is A.h.

If I comment out theFunction in B and I comment out the include of A.h,
it'll compile no problem. But that obviously isn't the solution as B

can't
use A.

So, I need one of 2 solutions. Either (and most preferably) I somehow

gain
access to the parent object A's member variables, without having to pass A as a parameter to B's function....or, I keep it like it is, but somehow

get
it to compile.


See above. The alternative solution I was talking about is to
declare 'B's constructor as accepting A&:

class A; // forward declataion
class B {
A& parent;
public:
B(A& p) : parent(p);
};

...
class A {
B myB;
public:
A() : myB(*this) {}
...
};

The compiler may not line the use of 'this' in the initialiser list,
but you can ignore the warning.
Can anyone inform me how either of the above can be accomplished?

Oh...and I know I could just pass myA.x, but don't want to do that as the real function is called often and is actually dependent upon many member
variables of A.


Shouldn't it be a member of A, then?

Victor


Hi,

That's a nice solution, and I'll probably use it, but the problem still is
that even if I comment out theFunction in B and all references to A, as long
as B is including A.h, those compiler errors still remain. If I comment out
#include "A.h", then it compiles without errors....but if I put it in the
errors come back.

If A.h includes B.h and B.h includes A.h, then those errors will be there.

Thanks for the help!
Jul 19 '05 #3
"Eternally" <m@r.com> wrote...
[...]
That's a nice solution, and I'll probably use it, but the problem still is
that even if I comment out theFunction in B and all references to A, as long as B is including A.h, those compiler errors still remain. If I comment out #include "A.h", then it compiles without errors....but if I put it in the
errors come back.
"Doctor, if I do this, it hurts. What should I do?"
"Don't do that."
If A.h includes B.h and B.h includes A.h, then those errors will be there.


Of course. The solution is not to have those circular includes.

Victor
Jul 19 '05 #4

"Eternally" <m@r.com> wrote in message
news:k7*******************@twister.nyroc.rr.com...
Ok, this may sound confusing....but it's really simple. If you're confused, just look at my example code and it'll make sense.

Here's my situation. I have 2 classes....A and B.

Class A has a member variable of type B.
Class B has a member function which does calculations which are dependent
upon values of members of the Class A that owns it.

When in that function of class B, I don't know how I can gain access to it's parent Class A's member variables, so my solution to the problem is to take as a parameter to that function, a class A datatype. So, it's like this:

class A
{
public:
int x;
B myB;
:
:
};

class B
{
public:
int y;
void theFunction(A parentA);
:
:
};

void B::theFunction(A parentA){
y = parentA.x * 10;
}

I would call it like this:
A myA;
myA.myB(myA);

Now, the problem is, both A.h and B.h have to include eachother. When they do, I get the following compilation errors:
A.h(10): error C2143: syntax error : missing ';' before 'B'
A.h(10): error C2501: 'A::B' : missing storage-class or type specifiers

Line 10 is the line that I declare B myB is A.h.

If I comment out theFunction in B and I comment out the include of A.h,
it'll compile no problem. But that obviously isn't the solution as B can't use A.

So, I need one of 2 solutions. Either (and most preferably) I somehow gain access to the parent object A's member variables, without having to pass A
as a parameter to B's function....or, I keep it like it is, but somehow get it to compile.

Can anyone inform me how either of the above can be accomplished?

Oh...and I know I could just pass myA.x, but don't want to do that as the
real function is called often and is actually dependent upon many member
variables of A.

Thanks a lot for any help!


Something I have done in the face of circular dependencies is as illustrated
below. Im not especialy proud of it but it worked. If anyone has comments on
the technique Id be glad to hear them.

---- A.h ----

#ifndef A_H
#define A_H

class B; /* #include "B.h" */

class A
{ private:
B myB;
....
};
.....

/**
* By this point itll be possible to define the
* B class since A has already been defined
*/
#include "B.h"

#endif

---- B.h ----

#ifndef B_H
#define B_H

#include "A.h"

class B
{ public:
void theFunction(A*);
....
};
.....

#endif
----
Jul 19 '05 #5

"Ellarco" <no****@eircom.net> wrote in message
news:1p*******************@news.indigo.ie...

"Eternally" <m@r.com> wrote in message
news:k7*******************@twister.nyroc.rr.com...
Ok, this may sound confusing....but it's really simple. If you're
confused,
just look at my example code and it'll make sense.

Here's my situation. I have 2 classes....A and B.

Class A has a member variable of type B.
Class B has a member function which does calculations
which are dependent upon values of members of the Class A that owns it.

When in that function of class B, I don't know how I can gain access to it's
parent Class A's member variables, so my solution to the
problem is to take
as a parameter to that function, a class A datatype.
So, it's like this:
class A
{
public:
int x;
B myB;
:
:
};

class B
{
public:
int y;
void theFunction(A parentA);
:
:
};

void B::theFunction(A parentA){
y = parentA.x * 10;
}

I would call it like this:
A myA;
myA.myB(myA);

Now, the problem is, both A.h and B.h have to include eachother. When they
do, I get the following compilation errors:
A.h(10): error C2143: syntax error : missing ';' before
'B' A.h(10): error C2501: 'A::B' : missing storage-class or type specifiers
Line 10 is the line that I declare B myB is A.h.

If I comment out theFunction in B and I comment out the include of A.h, it'll compile no problem. But that obviously isn't the solution as B can't
use A.

So, I need one of 2 solutions. Either (and most
preferably) I somehow gain
access to the parent object A's member variables,
without having to pass A as a parameter to B's function....or, I keep it like it is, but somehow get
it to compile.

Can anyone inform me how either of the above can be
accomplished?
Oh...and I know I could just pass myA.x, but don't want to do that as the real function is called often and is actually dependent upon many member variables of A.

Thanks a lot for any help!


Something I have done in the face of circular dependencies

is as illustrated below. Im not especialy proud of it but it worked. If anyone has comments on the technique Id be glad to hear them.

---- A.h ----

#ifndef A_H
#define A_H

class B; /* #include "B.h" */

class A
{ private:
B myB;
....
};
....

/**
* By this point itll be possible to define the
* B class since A has already been defined
*/
#include "B.h"

#endif

---- B.h ----

#ifndef B_H
#define B_H

#include "A.h"

class B
{ public:
void theFunction(A*);
....
};
....

#endif
----


You've got the forward declaration and #include-in-header
backwards.
Jul 19 '05 #6
"TR" <no@spam.com> writes:
"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:PN*******************@rwcrnsc51.ops.asp.att.n et...
If A.h includes B.h and B.h includes A.h, then those errors will be

there.

Of course. The solution is not to have those circular includes.


A better long-term solution is header guards, unless this is the most
complex program he's ever going to create.

Use this in your A.h and B.h files:

#ifndef FILENAME_H
#define FILENAME_H

contents of header

#endif

or in VC++ just:
#pragma once

at the top. But it's less portable.


Huh? Include guards don't prevent circular includes - have you
actually *READ* the thread?

regards
frank

--
Frank Schmitt
4SC AG phone: +49 89 700763-0
e-mail: frank DOT schmitt AT 4sc DOT com
Jul 19 '05 #7
mjm
I haven't read the whole thread -- so I am sorry if the question has
been answered already.

When the class A is declared in a header pointer members of A need not
have been defined (only declared) a this point:

file A.h:

class B; // forward declaration

class A {

B* b;
int f(B x);
}
The forward declaration allows you to use the name "B"
as a type name, A.h need not include B.h.
The class B has to be defined somewhere of course.
You cannot USE B in the header, ie. this won't work

class A {

B* b;
int f(B x){ return b.doSomething(); }

}

But if the header contains only declarations and no implementations
that problem does not occur. You move the definition of A::f to A.cc
and #include B.h in A.cc.
Jul 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: dharmesh Gupta | last post by:
i have a multifile program namely bpl.cpp-contains main() function idr.h ( class definitions) idr.cpp ( the implementation of the functions in the classes described in idr.h) bpl1.h ( contains...
9
by: Sarath | last post by:
I am working with an application using ASP, getting below error when i am trying to include new asp include file. _____________________________________________________________________ Microsoft...
11
by: cppaddict | last post by:
Say that your CustomClass.h header files requires #include <string> Now say that your CustomClass.cpp file also requires string. Is it good form to repeat the <string> include to make the...
2
by: puzzlecracker | last post by:
after reading some of the post I found out something rather radical to my previous understanding: that when you do #include<iostream> #include<string> #include<vector> etc compiler puts...
8
by: David D. | last post by:
In html, one can say <script language="JavaScript" src="http://someCodeSnippet.js"> Is there any way to embed the included code snippet in a function (in the case where it is not already a...
8
by: nrhayyal | last post by:
Hi c++ Gurus, Need your blessing. while testing few aspects with respect to header file inclusions, i observed few things which i would like to share with you. i have a file sqlca.h in which a...
4
by: none | last post by:
Hi, I am wondering if anyone has some insight into a way to get the names of the functions that are defined in a C header file. What I am trying to do is develop tests for a large amount of C...
6
by: przemek | last post by:
I used to think that including header files gives me some extra function to use. Like putting <stdlib.h> allows use of system("PAUSE") without doing anything special. I disovered lately that it...
3
by: KIRAN | last post by:
Hello all, My question is about the way of including header files(*.h) in source files (*.c) I have three folders, -build ( for project makefiles) -include ( for *.h files) -src (for *.c...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.